We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daf9619 commit 640ddf3Copy full SHA for 640ddf3
.gitignore
@@ -1,3 +1,4 @@
1
+website/build/
2
umd
3
node_modules
4
npm-debug.log
website/package.json
@@ -4,7 +4,9 @@
"private": true,
5
"scripts": {
6
"dev": "rm -rf .examples && cp -R examples .examples && webpack-dev-server --config webpack.config.js --inline --content-base build",
7
- "start": "pushstate-server build/"
+ "build": "npm run clean && cp -R examples .examples && webpack",
8
+ "clean": "rm -rf .examples build",
9
+ "start": "npm run build && pushstate-server build/"
10
},
11
"dependencies": {
12
"pushstate-server": "1.14.0"
0 commit comments