This repository was archived by the owner on Feb 2, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 10 files changed +15
-28
lines changed Expand file tree Collapse file tree 10 files changed +15
-28
lines changed Original file line number Diff line number Diff line change 1010 "build" : " npm run build:lib && npm run build:lib6" ,
1111 "build:lib" : " tsc --target es2017 --outDir dist" ,
1212 "build:lib6" : " tsc --target es2015 --outDir dist6" ,
13+ "build:watch" : " tsc --watch" ,
1314 "clean" : " rm -rf dist dist6" ,
1415 "lint" : " tslint -c tslint.full.json --project tsconfig.json --type-check" ,
1516 "lint:fix" : " npm run lint -- --fix" ,
1617 "prepublish" : " npm run build" ,
1718 "pretest" : " npm run clean && npm run build" ,
1819 "test" : " mocha" ,
1920 "posttest" : " npm run lint" ,
20- "vscode- test" : " mocha && npm run lint"
21+ "test:dev " : " mocha && npm run lint"
2122 },
2223 "repository" : {
2324 "type" : " git" ,
4142 "@loopback/testlab" : " ^4.0.0-alpha.7" ,
4243 "@types/mocha" : " ^2.2.43" ,
4344 "mocha" : " ^3.5.3" ,
44- "ts-node" : " ^3.3.0" ,
4545 "tslint" : " ^5.7.0" ,
4646 "typescript" : " ^2.5.2"
4747 }
Original file line number Diff line number Diff line change 1+ # Controllers
2+
3+ This directory contains source files for the controllers exported by this extension.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -26,20 +26,3 @@ You can check out the following resource to learn more about decorators and how
2626
2727- [ TypeScript Handbook: Decorators] ( https://www.typescriptlang.org/docs/handbook/decorators.html )
2828- [ Decorators in LoopBack] ( http://loopback.io/doc/en/lb4/Decorators.html )
29-
30- ## Contributions
31-
32- - [ Guidelines] ( http://loopback.io/doc/en/contrib/index.html )
33- - [ Join the team] ( https://github.com/strongloop/loopback-next/issues/110 )
34-
35- ## Tests
36-
37- Run ` npm test ` from the root folder.
38-
39- ## Contributors
40-
41- See [ all contributors] ( https://github.com/strongloop/loopback-next-extension-starter/graphs/contributors ) .
42-
43- ## License
44-
45- MIT
File renamed without changes.
Original file line number Diff line number Diff line change 33// This file is licensed under the MIT License.
44// License text available at https://opensource.org/licenses/MIT
55
6- export * from './decorator- txIdFromHeader' ;
6+ export * from './decorators/ txIdFromHeader.decorator ' ;
Original file line number Diff line number Diff line change 1+ # Providers
2+
3+ This directory contains providers contributing additional bindings, for example
4+ custom sequence actions.
Original file line number Diff line number Diff line change 1+ # Repositories
2+
3+ This directory contains code for repositories provided by this extension.
Original file line number Diff line number Diff line change 1- --compilers ts:ts-node/register
21--recursive
32--reporter dot
3+ dist/test
Original file line number Diff line number Diff line change 99 "lib" : [" es2017" , " dom" ],
1010 "module" : " commonjs" ,
1111 "moduleResolution" : " node" ,
12- "target" : " es6 " ,
12+ "target" : " es2017 " ,
1313 "outDir" : " dist" ,
1414 "sourceMap" : true ,
1515 "declaration" : true
You can’t perform that action at this time.
0 commit comments