File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export class Gulpfile {
29
29
*/
30
30
@Task ( )
31
31
compile ( ) {
32
- return gulp . src ( "gulpfile.ts " , { read : false } )
32
+ return gulp . src ( "package.json " , { read : false } )
33
33
. pipe ( shell ( [ "tsc" ] ) ) ;
34
34
}
35
35
@@ -42,7 +42,7 @@ export class Gulpfile {
42
42
*/
43
43
@Task ( )
44
44
npmPublish ( ) {
45
- return gulp . src ( "gulpfile.ts " , { read : false } )
45
+ return gulp . src ( "package.json " , { read : false } )
46
46
. pipe ( shell ( [
47
47
"cd ./build/package && npm publish"
48
48
] ) ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " typeorm-typedi-extensions" ,
3
- "version" : " 0.0.4 " ,
3
+ "version" : " 0.0.5 " ,
4
4
"description" : " Dependancy injection and service container integration with TypeORM using typedi library." ,
5
5
"license" : " MIT" ,
6
6
"readmeFilename" : " README.md" ,
37
37
"tslint" : " ^3.15.1" ,
38
38
"tslint-stylish" : " ^2.1.0-beta" ,
39
39
"typedi" : " ^0.4.2" ,
40
- "typeorm" : " ^0.0.3-alpha.20 " ,
40
+ "typeorm" : " ^0.0.3" ,
41
41
"typescript" : " ^2.0.2"
42
42
},
43
43
"peerDependencies" : {
44
- "typeorm" : " ^0.0.3-alpha.20 " ,
44
+ "typeorm" : " ^0.0.3" ,
45
45
"typedi" : " ^0.4.2"
46
46
}
47
47
}
You can’t perform that action at this time.
0 commit comments