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 Dec 18, 2023
1 parent da84a9b commit d9e29a0
Show file tree
Hide file tree
Showing 13 changed files with 32 additions and 28 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 18, 2023 6:09 AM UTC.
# Last generated Dec 18, 2023 9:38 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 18, 2023 6:09 AM UTC.
# Last generated Dec 18, 2023 9:38 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 18, 2023 6:09 AM UTC.
# Last generated Dec 18, 2023 9:38 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 18, 2023 6:09 AM UTC.
# Last generated Dec 18, 2023 9:38 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 18, 2023 6:09 AM UTC.
# Last generated Dec 18, 2023 9:38 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 18, 2023 6:09 AM UTC.
# Last generated Dec 18, 2023 9:38 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 18, 2023 6:09 AM UTC.
* Last generated using `./settings.mjs` Dec 18, 2023 9:38 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 18, 2023 6:09 AM UTC.
# Last generated Dec 18, 2023 9:38 AM UTC.

# Locals

Expand Down
4 changes: 4 additions & 0 deletions dev/.files/vite/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,10 @@ export default async ({ mode, command, isSsrBuild: isSSRBuild }) => {
const originalLoggerWarnOnce = customLogger.warnOnce;

customLogger.warnOnce = (msg, options) => {
if (msg.includes("didn't resolve at build time, it will remain unchanged to be resolved at runtime")) {
return; // Safe to ignore. Some of our CSS resources, for example, reference cargo assets.
// Cargo assets can only be resolved at runtime. There’s no need for this warning; we are aware.
}
if (/^Sourcemap for "[^"]+\.mdx" points to missing source files$/iu.test(msg)) {
return; // Safe to ignore. Some MDX glob imports contain query strings, which makes the filesystem path unreachable.
// This is a consequence of us needing to create a distinct import for frontMatter. See `importGlobRestoreExtension` below.
Expand Down
32 changes: 16 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.144",
"version": "1.0.145",
"license": "GPL-3.0-or-later",
"name": "@clevercanyon/utilities.cfw",
"description": "Utilities for JavaScript apps running in a Cloudflare Worker environment.",
Expand Down Expand Up @@ -54,7 +54,7 @@
},
"dependencies": {},
"peerDependencies": {
"@clevercanyon/utilities": "^1.0.624",
"@clevercanyon/utilities": "^1.0.626",
"@cloudflare/kv-asset-handler": "0.2.0"
},
"peerDependenciesMeta": {},
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.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 `./tsconfig.mjs`.
*
* Last generated using `./tsconfig.mjs` Dec 18, 2023 6:09 AM UTC.
* Last generated using `./tsconfig.mjs` Dec 18, 2023 9:38 AM UTC.
*/
{
"include": ["./src/**/*", "./dev-types.d.ts"],
Expand Down
2 changes: 1 addition & 1 deletion wrangler.toml
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 `./wrangler.mjs`.
#
# Last generated using `./wrangler.mjs` Dec 18, 2023 6:09 AM UTC.
# Last generated using `./wrangler.mjs` Dec 18, 2023 9:38 AM UTC.
##

send_metrics = false
Expand Down

0 comments on commit d9e29a0

Please sign in to comment.