Skip to content

Commit

Permalink
fix: fix gulpfile build location
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Feb 18, 2018
1 parent f64b2fa commit c74f736
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const gulp = require('gulp');
const ts = require('gulp-typescript');
const tsConfig = require('./tsconfig');
const tsConfig = require('../tsconfig');

gulp.task('build-ts', () => {
return gulp.src([
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"scripts": {
"start": "npm run test:story",
"build": "npm run clean && gulp build-ts && gulp build-modules",
"build": "npm run clean && gulp --gulpfile build/gulpfile.js build-ts && gulp --gulpfile build/gulpfile.js build-modules",
"clean": "rimraf lib modules && npm run test:story:clean && npm run docs:clean",
"test": "npm run test:server && npm run test:client",
"test:server": "mocha -r ts-node/register src/**/*.test-server.ts*",
Expand Down

0 comments on commit c74f736

Please sign in to comment.