Add back in astro as a dependency of the snowpack example (#81)
Removing the dependency breaks the site as using Markdown creates an import to a builtin Astro component. So we need astro as a dep. Not sure why it was changed anyways.
This commit is contained in:
parent
8e4b201c1b
commit
cffde0192b
3 changed files with 386 additions and 969 deletions
579
examples/snowpack/package-lock.json
generated
579
examples/snowpack/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -2,14 +2,15 @@
|
||||||
"name": "snowpack-www",
|
"name": "snowpack-www",
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "nodemon -w ../../lib -x '../../astro.mjs dev .'",
|
"start": "nodemon -w ../../lib -x 'astro dev .'",
|
||||||
"build": "../../astro.mjs build",
|
"build": "astro build",
|
||||||
"test": "jest /__test__/",
|
"test": "jest /__test__/",
|
||||||
"format": "prettier --write \"src/**/*.js\" && yarn format:css",
|
"format": "prettier --write \"src/**/*.js\" && yarn format:css",
|
||||||
"format:css": "stylelint 'src/**/*.scss' --fix",
|
"format:css": "stylelint 'src/**/*.scss' --fix",
|
||||||
"lint": "prettier --check \"src/**/*.js\""
|
"lint": "prettier --check \"src/**/*.js\""
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"astro": "file://../../",
|
||||||
"date-fns": "^2.19.0",
|
"date-fns": "^2.19.0",
|
||||||
"deepmerge": "^4.2.2",
|
"deepmerge": "^4.2.2",
|
||||||
"docsearch.js": "^2.6.3",
|
"docsearch.js": "^2.6.3",
|
||||||
|
|
771
package-lock.json
generated
771
package-lock.json
generated
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue