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:
Matthew Phillips 2021-04-12 08:26:59 -04:00 committed by GitHub
parent 8e4b201c1b
commit cffde0192b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 386 additions and 969 deletions

File diff suppressed because it is too large Load diff

View file

@ -2,14 +2,15 @@
"name": "snowpack-www",
"version": "3.0.0",
"scripts": {
"start": "nodemon -w ../../lib -x '../../astro.mjs dev .'",
"build": "../../astro.mjs build",
"start": "nodemon -w ../../lib -x 'astro dev .'",
"build": "astro build",
"test": "jest /__test__/",
"format": "prettier --write \"src/**/*.js\" && yarn format:css",
"format:css": "stylelint 'src/**/*.scss' --fix",
"lint": "prettier --check \"src/**/*.js\""
},
"dependencies": {
"astro": "file://../../",
"date-fns": "^2.19.0",
"deepmerge": "^4.2.2",
"docsearch.js": "^2.6.3",

771
package-lock.json generated

File diff suppressed because it is too large Load diff