Skip to content

Commit

Permalink
Project update. [p][robotic]
Browse files Browse the repository at this point in the history
  • Loading branch information
jaswrks committed Jan 3, 2024
1 parent 4c836bc commit 68ce397
Show file tree
Hide file tree
Showing 14 changed files with 523 additions and 922 deletions.
2 changes: 1 addition & 1 deletion .browserslistrc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Dec 24, 2023 5:08 PM UTC.
# Last generated Jan 3, 2024 12:33 AM UTC.

[production]
node >= 20.9.0
Expand Down
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Dec 24, 2023 5:08 PM UTC.
# Last generated Jan 3, 2024 12:33 AM UTC.

# Locals

Expand Down
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Dec 24, 2023 5:08 PM UTC.
# Last generated Jan 3, 2024 12:33 AM UTC.

# Default

Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Dec 24, 2023 5:08 PM UTC.
# Last generated Jan 3, 2024 12:33 AM UTC.

# Locals

Expand Down
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# Generated data.
# <generated:start>

# Last generated Dec 24, 2023 5:08 PM UTC.
# Last generated Jan 3, 2024 12:33 AM UTC.

# Locals

Expand Down
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Dec 24, 2023 5:08 PM UTC.
# Last generated Jan 3, 2024 12:33 AM UTC.

# Packages

Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @note This entire file will be updated automatically.
* @note Instead of editing here, please review `./settings.mjs`.
*
* Last generated using `./settings.mjs` Dec 24, 2023 5:08 PM UTC.
* Last generated using `./settings.mjs` Jan 3, 2024 12:33 AM UTC.
*/
{
"editor.formatOnType": false,
Expand Down
2 changes: 1 addition & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Dec 24, 2023 5:08 PM UTC.
# Last generated Jan 3, 2024 12:33 AM UTC.

# Locals

Expand Down
4 changes: 2 additions & 2 deletions dev/.files/bin/includes/exclusions.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export default {
* Default Git/NPM ignores, by category. Categories added to the default export here. Provided by
* `@clevercanyon/utilities`. Includes everything we have in our default `./.gitignore`, `./.npmignore`.
*/
...$obj.map($path.defaultGitNPMIgnoresByCategory(), (category) => {
...$obj.map($obj.cloneDeep($path.defaultGitNPMIgnoresByCategory()), (category) => {
return category.map((gitIgnore) => $path.gitIgnoreToGlob(gitIgnore));
}),

Expand All @@ -177,7 +177,7 @@ export default {
* potentially customized `./.npmignore` file in the current project directory. The reason is because we intend to
* enforce our standards. For further details {@see https://o5p.me/MuskgW}.
*/
defaultNPMIgnores: $path.defaultNPMIgnores().map((npmIgnore) => {
defaultNPMIgnores: $obj.cloneDeep($path.defaultNPMIgnores()).map((npmIgnore) => {
return $path.gitIgnoreToGlob(npmIgnore);
}),

Expand Down
18 changes: 15 additions & 3 deletions dev/.files/bin/includes/extensions.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -79,17 +79,29 @@ const extensions = {
/**
* By canonical.
*/
byCanonical: $obj.map($path.extsByCanonical(), (exts) => dot(exts)),
byCanonical: $obj.map(
$obj.cloneDeep($path.extsByCanonical()), //
(exts) => dot(exts),
{ byReference: true },
),

/**
* By VS Code lang (camelCase, includes `codeTextual`).
*/
byVSCodeLang: $obj.map($path.extsByVSCodeLang({ camelCase: true, enableCodeTextual: true }), (exts) => dot(exts)),
byVSCodeLang: $obj.map(
$obj.cloneDeep($path.extsByVSCodeLang({ camelCase: true, enableCodeTextual: true })), //
(exts) => dot(exts),
{ byReference: true },
),

/**
* By dev group.
*/
byDevGroup: $obj.map($path.jsTSExtsByDevGroup(), (exts) => dot(exts)),
byDevGroup: $obj.map(
$obj.cloneDeep($path.jsTSExtsByDevGroup()), //
(exts) => dot(exts),
{ byReference: true },
),
};

/**
Expand Down
Loading

0 comments on commit 68ce397

Please sign in to comment.