From c74f7361bb0757f4498c5e9a1e721df9a9486516 Mon Sep 17 00:00:00 2001 From: Vadim Dalecky Date: Sun, 18 Feb 2018 01:56:04 +0000 Subject: [PATCH] fix: fix gulpfile build location --- build/gulpfile.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/gulpfile.js b/build/gulpfile.js index cb18fbd2..2fcb57e2 100644 --- a/build/gulpfile.js +++ b/build/gulpfile.js @@ -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([ diff --git a/package.json b/package.json index 134beadb..70cb2b9b 100644 --- a/package.json +++ b/package.json @@ -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*",