astro minor bug fix

pull/5089/head
Daniel 2023-04-27 13:36:59 +05:30
parent 8b4fa21236
commit 825a2fc260
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
"lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json", "lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"docs-compile": "astro --config src/config/astro.config.mjs build", "docs-compile": "astro --config src/config/astro.config.mjs build",
"docs-lint": "astro --config src/config/astro.config.mjs check", "docs-lint": "astro --config src/config/astro.config.mjs check",
"docs-serve": "astro --config src/config/astro.config.mjs dev", "docs-serve": "astro --config src/config/astro.config.mjs dev --open",
"assets": "node src/config/assets.config.mjs", "assets": "node src/config/assets.config.mjs",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel js-lint css-lint docs-lint lockfile-lint", "lint": "npm-run-all --aggregate-output --continue-on-error --parallel js-lint css-lint docs-lint lockfile-lint",
"compile": "npm-run-all docs-compile assets css js", "compile": "npm-run-all docs-compile assets css js",

View File

@ -1,4 +1,4 @@
{ {
"root": true, "root": true,
"extends": "astro/tsconfigs/base" "extends": "astro/tsconfigs/strict"
} }