add 11ty watch scripts
This commit is contained in:
parent
69cdeeb2bf
commit
cfbc244381
3 changed files with 2609 additions and 3 deletions
2598
package-lock.json
generated
Normal file
2598
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
10
package.json
10
package.json
|
|
@ -4,10 +4,16 @@
|
||||||
"description": "my website!!",
|
"description": "my website!!",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"watch:eleventy": "npx @11ty/eleventy --watch",
|
||||||
|
"watch:sass": "npx sass sass:_site/css --watch",
|
||||||
|
"start": "npm run watch:eleventy & npm run watch:sass"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "yuki",
|
"author": "yuki",
|
||||||
"license": "WTFPL",
|
"license": "WTFPL",
|
||||||
"type": "commonjs"
|
"type": "commonjs",
|
||||||
|
"dependencies": {
|
||||||
|
"@11ty/eleventy": "^3.0.0",
|
||||||
|
"sass": "^1.86.0"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,5 +4,7 @@
|
||||||
"path": "."
|
"path": "."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"settings": {}
|
"settings": {
|
||||||
|
"liveServer.settings.root": "/_site/"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Loading…
Add table
Reference in a new issue