Skip to content

Commit d8d4e5e

Browse files
author
Umed Khudoiberdiev
committed
version bump
1 parent f06e0a7 commit d8d4e5e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

gulpfile.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class Gulpfile {
2929
*/
3030
@Task()
3131
compile() {
32-
return gulp.src("gulpfile.ts", { read: false })
32+
return gulp.src("package.json", { read: false })
3333
.pipe(shell(["tsc"]));
3434
}
3535

@@ -42,7 +42,7 @@ export class Gulpfile {
4242
*/
4343
@Task()
4444
npmPublish() {
45-
return gulp.src("gulpfile.ts", { read: false })
45+
return gulp.src("package.json", { read: false })
4646
.pipe(shell([
4747
"cd ./build/package && npm publish"
4848
]));

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typeorm-typedi-extensions",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"description": "Dependancy injection and service container integration with TypeORM using typedi library.",
55
"license": "MIT",
66
"readmeFilename": "README.md",
@@ -37,11 +37,11 @@
3737
"tslint": "^3.15.1",
3838
"tslint-stylish": "^2.1.0-beta",
3939
"typedi": "^0.4.2",
40-
"typeorm": "^0.0.3-alpha.20",
40+
"typeorm": "^0.0.3",
4141
"typescript": "^2.0.2"
4242
},
4343
"peerDependencies": {
44-
"typeorm": "^0.0.3-alpha.20",
44+
"typeorm": "^0.0.3",
4545
"typedi": "^0.4.2"
4646
}
4747
}

0 commit comments

Comments
 (0)