commit 5c1833dd78d0449ed4aa4d3424793c10e74235ed
parent dc3939968a1df333e969d9ae9f5f64a717a81b32
Author: Konstantin Tarkus <hello@tarkus.me>
Date: Wed, 22 Apr 2015 10:01:44 +0300
Copy package.json file to the output folder on build
..which might be needed to deploy the site to Azure or Heroku
Diffstat:
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/gulpfile.js b/gulpfile.js
@@ -53,6 +53,7 @@ gulp.task('vendor', function() {
// Static files
gulp.task('assets', function() {
src.assets = [
+ 'package.json',
'src/assets/**',
'src/content*/**/*.*',
'src/templates*/**/*.*'
diff --git a/package.json b/package.json
@@ -73,7 +73,7 @@
]
},
"scripts": {
- "start": "gulp",
+ "start": "node server.js",
"test": "eslint src gulpfile.js webpack.config.js && jest",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update"