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 Sep 30, 2023
1 parent 65373aa commit afe7929
Show file tree
Hide file tree
Showing 20 changed files with 81 additions and 81 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 Sat, Sep 30, 2023, 12:55:57 PM EDT.
# Last generated Sat, Sep 30, 2023, 2:53:40 PM EDT.

[production]
last 1 chrome versions
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 Sat, Sep 30, 2023, 12:55:57 PM EDT.
# Last generated Sat, Sep 30, 2023, 2:53:39 PM EDT.

# 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 Sat, Sep 30, 2023, 12:55:57 PM EDT.
# Last generated Sat, Sep 30, 2023, 2:53:39 PM EDT.

# 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 Sat, Sep 30, 2023, 12:55:57 PM EDT.
# Last generated Sat, Sep 30, 2023, 2:53:39 PM EDT.

# 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 Sat, Sep 30, 2023, 12:55:57 PM EDT.
# Last generated Sat, Sep 30, 2023, 2:53:39 PM EDT.

# 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 Sat, Sep 30, 2023, 12:55:57 PM EDT.
# Last generated Sat, Sep 30, 2023, 2:53:39 PM EDT.

# 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` Sat, Sep 30, 2023, 12:55:57 PM EDT.
* Last generated using `./settings.mjs` Sat, Sep 30, 2023, 2:53:39 PM EDT.
*/
{
"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 Sat, Sep 30, 2023, 12:55:57 PM EDT.
# Last generated Sat, Sep 30, 2023, 2:53:39 PM EDT.

# Locals

Expand Down
2 changes: 1 addition & 1 deletion dev/.files/bin/dockerignore/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default async ({ projDir }) => {
let dockerIgnoreFileContentsIgnores = $str.dedent(`
# Last generated ${$time.i18n()}.
`);
for (const [groupName, group] of Object.entries($path.defaultNPMIgnoresByGroup)) {
for (const [groupName, group] of Object.entries($path.defaultNPMIgnoresByGroup())) {
dockerIgnoreFileContentsIgnores += '\n\n# ' + groupName;

if (!$is.array(group)) {
Expand Down
2 changes: 1 addition & 1 deletion dev/.files/bin/gitattributes/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default async ({ projDir }) => {
* text=auto
`);
for (const [groupName, group] of Object.entries($mime.types)) {
for (const [groupName, group] of Object.entries($mime.types())) {
gitAttributesFileContentsTextBinary += '\n\n# ' + groupName + '\n';

for (const [subgroupExts, subgroup] of Object.entries(group)) {
Expand Down
2 changes: 1 addition & 1 deletion dev/.files/bin/gitignore/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default async ({ projDir }) => {
let gitIgnoreFileContentsIgnores = $str.dedent(`
# Last generated ${$time.i18n()}.
`);
for (const [groupName, group] of Object.entries($path.defaultGitIgnoresByGroup)) {
for (const [groupName, group] of Object.entries($path.defaultGitIgnoresByGroup())) {
gitIgnoreFileContentsIgnores += '\n\n# ' + groupName;

if (!$is.array(group)) {
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($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: $path.defaultNPMIgnores().map((npmIgnore) => {
return $path.gitIgnoreToGlob(npmIgnore);
}),

Expand Down
2 changes: 1 addition & 1 deletion dev/.files/bin/npmignore/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default async ({ projDir }) => {
let npmIgnoreFileContentsIgnores = $str.dedent(`
# Last generated ${$time.i18n()}.
`);
for (const [groupName, group] of Object.entries($path.defaultNPMIgnoresByGroup)) {
for (const [groupName, group] of Object.entries($path.defaultNPMIgnoresByGroup())) {
npmIgnoreFileContentsIgnores += '\n\n# ' + groupName;

if (!$is.array(group)) {
Expand Down
2 changes: 1 addition & 1 deletion dev/.files/bin/prettierignore/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default async ({ projDir }) => {
let prettierIgnoreFileContentsIgnores = $str.dedent(`
# Last generated ${$time.i18n()}.
`);
for (const [groupName, group] of Object.entries($path.defaultGitIgnoresByGroup)) {
for (const [groupName, group] of Object.entries($path.defaultGitIgnoresByGroup())) {
if (!['Dist', 'Packages', 'Version Control', 'Operating Systems'].includes(groupName)) {
continue; // Not applicable; we only include select groups.
}
Expand Down
2 changes: 1 addition & 1 deletion dev/.files/bin/vscodeignore/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default async ({ projDir }) => {
let vscodeIgnoreFileContentsIgnores = $str.dedent(`
# Last generated ${$time.i18n()}.
`);
for (const [groupName, group] of Object.entries($path.defaultNPMIgnoresByGroup)) {
for (const [groupName, group] of Object.entries($path.defaultNPMIgnoresByGroup())) {
vscodeIgnoreFileContentsIgnores += '\n\n# ' + groupName;

if (!$is.array(group)) {
Expand Down
2 changes: 1 addition & 1 deletion dev/.files/wrangler/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export default async () => {
site: {
bucket: './' + path.relative(projDir, './dist/assets'),
exclude: [
...$path.defaultNPMIgnores,
...$path.defaultNPMIgnores(),
'/a16s', // A16s (top-level only).
],
},
Expand Down
Loading

0 comments on commit afe7929

Please sign in to comment.