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 7e5bf83 commit 55dc220
Show file tree
Hide file tree
Showing 13 changed files with 92 additions and 88 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 2:28 AM UTC.
# Last generated Dec 18, 2023 9:36 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 2:28 AM UTC.
# Last generated Dec 18, 2023 9:36 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 2:28 AM UTC.
# Last generated Dec 18, 2023 9:36 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 2:28 AM UTC.
# Last generated Dec 18, 2023 9:36 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 2:28 AM UTC.
# Last generated Dec 18, 2023 9:36 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 2:28 AM UTC.
# Last generated Dec 18, 2023 9:36 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 2:28 AM UTC.
* Last generated using `./settings.mjs` Dec 18, 2023 9:36 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 2:28 AM UTC.
# Last generated Dec 18, 2023 9:36 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
Loading

0 comments on commit 55dc220

Please sign in to comment.