File tree 1 file changed +10
-10
lines changed
1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -25,16 +25,16 @@ module.exports = {
25
25
description : 'Serves the current app and watches for changes to restart it'
26
26
} ,
27
27
/**
28
- * Setup's stuff
28
+ * Setup of the development environment
29
29
*/
30
30
setup : {
31
- db : {
32
- script : series (
33
- 'nps db.migrate ' ,
34
- 'nps db.seed'
35
- ) ,
36
- description : 'Setup`s the database by migrating and seeding'
37
- }
31
+ script : series (
32
+ 'yarn install' ,
33
+ 'nps db.drop ' ,
34
+ 'nps db.migrate' ,
35
+ 'nps db.seed'
36
+ ) ,
37
+ description : 'Setup`s the development environment(yarn & database)'
38
38
} ,
39
39
/**
40
40
* Creates the needed configuration files
@@ -267,11 +267,11 @@ function copy(source, target) {
267
267
}
268
268
269
269
function run ( path ) {
270
- return `ts-node ${ path } ` ;
270
+ return `ts-node --typeCheck ${ path } ` ;
271
271
}
272
272
273
273
function runFast ( path ) {
274
- return run ( `-F ${ path } `) ;
274
+ return `ts-node ${ path } `;
275
275
}
276
276
277
277
function tslint ( path ) {
You can’t perform that action at this time.
0 commit comments