Skip to content

Commit

Permalink
docs: include src files on www (#2660)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasvh authored Aug 14, 2021
1 parent f143166 commit 58ff000
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions www/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@
"license": "MIT",
"main": "n/a",
"scripts": {
"copybuild": "mkdirp public/dist && cpy ../dist/*.js public/dist",
"build": "npm run copybuild && gatsby build",
"copy:build": "mkdirp public/dist && cpy ../dist/*.js public/dist",
"copy:src": "mkdirp public/src && cpy ../src/**/*.ts public/src --parents",
"copy": "npm run copy:build && npm run copy:src",
"build": "npm run copy && gatsby build",
"start": "gatsby develop",
"test": "echo \"Error: no test specified\" && exit 1"
}
Expand Down

0 comments on commit 58ff000

Please sign in to comment.