File tree Expand file tree Collapse file tree 3 files changed +8
-19
lines changed Expand file tree Collapse file tree 3 files changed +8
-19
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 17
17
"@types/node" : " ^10.1.1" ,
18
18
"cross-spawn" : " ^6.0.5" ,
19
19
"debug" : " ^3.1.0" ,
20
- "fs-extra" : " ^6 .0.1 " ,
20
+ "fs-extra" : " ^7 .0.0 " ,
21
21
"glob" : " ^7.1.2" ,
22
22
"mocha" : " ^5.1.1" ,
23
- "nyc" : " ^11.7.1 " ,
23
+ "nyc" : " ^12.0.2 " ,
24
24
"prettier" : " ^1.14.0" ,
25
25
"rimraf" : " ^2.6.2" ,
26
26
"source-map-support" : " ^0.5.5" ,
27
- "strong-docs" : " ^3.2 .0" ,
27
+ "strong-docs" : " ^4.0 .0" ,
28
28
"tslint" : " ^5.9.1" ,
29
- "typescript" : " ~2.8.4 "
29
+ "typescript" : " ^3.0.1 "
30
30
},
31
31
"bin" : {
32
32
"lb-tsc" : " ./bin/compile-package.js" ,
39
39
"lb-clean" : " ./bin/run-clean.js"
40
40
},
41
41
"scripts" : {
42
- "lint" : " npm run prettier:check" ,
43
- "lint:fix" : " npm run prettier:fix" ,
44
- "prettier:cli" : " node bin/run-prettier \" bin/**/*.js\" " ,
45
- "prettier:check" : " npm run prettier:cli -- -l" ,
46
- "prettier:fix" : " npm run prettier:cli -- --write" ,
47
42
"test" : " npm run mocha" ,
48
- "mocha" : " node bin/run-mocha --timeout 30000 \" test/integration/*.js\" " ,
49
- "posttest" : " npm run lint"
43
+ "mocha" : " node bin/run-mocha --timeout 30000 \" test/integration/*.js\" "
50
44
}
51
45
}
Original file line number Diff line number Diff line change @@ -173,13 +173,14 @@ describe('build', function() {
173
173
'api-docs should have been created' ,
174
174
) ;
175
175
var typedocDir = require . resolve ( 'typedoc/package.json' ) ;
176
+ typedocDir = path . resolve ( typedocDir , '..' ) ;
176
177
assert (
177
- ! fs . existsSync ( path . join ( typedocDir , '.. /node_modules/typescript' ) ) ,
178
+ ! fs . existsSync ( path . join ( typedocDir , './node_modules/typescript' ) ) ,
178
179
'typedoc local dependency of typescript should have been renamed' ,
179
180
) ;
180
181
assert (
181
182
! fs . existsSync (
182
- path . join ( typedocDir , '.. /node_modules/.bin' ) ,
183
+ path . join ( typedocDir , './node_modules/.bin/tsc ' ) ,
183
184
'typedoc local scripts from typescript should have been removed' ,
184
185
) ,
185
186
) ;
You can’t perform that action at this time.
0 commit comments