Skip to content

Commit

Permalink
♻️ Project can now be built
Browse files Browse the repository at this point in the history
  • Loading branch information
sandoche committed Jun 17, 2019
1 parent 7bf391b commit cb883b0
Show file tree
Hide file tree
Showing 15 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -30,7 +30,7 @@ bower_components
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
build

# Dependency directories
node_modules/
Expand Down
2 changes: 1 addition & 1 deletion bin/www
Expand Up @@ -4,7 +4,7 @@
* Module dependencies.
*/

var app = require('../app');
var app = require('../src/app');
var debug = require('debug')('detox-pwa:server');
var http = require('http');

Expand Down
7 changes: 5 additions & 2 deletions package.json
Expand Up @@ -3,8 +3,11 @@
"version": "0.0.0",
"private": true,
"scripts": {
"start": "babel-node ./bin/www",
"start:dev": "nodemon ./bin/www --exec babel-node --presets es2015,env"
"start": "node ./build/app.js",
"start:dev": "nodemon ./bin/www --exec babel-node --presets es2015,env",
"build-app": "babel --presets es2015,env -d ./build ./src -s",
"clean": "rm -rf build && mkdir build",
"build": "npm run clean && npm run build-app"
},
"dependencies": {
"cookie-parser": "~1.4.4",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit cb883b0

Please sign in to comment.