renamed browser shim to typeorm model shim

This commit is contained in:
Umed Khudoiberdiev 2017-01-16 10:17:34 +05:00
parent 4d3221c877
commit 07c684bbc4
3 changed files with 6 additions and 6 deletions

View File

@ -54,7 +54,7 @@ export class Gulpfile {
"!./src/commands/*.ts",
"!./src/cli.ts",
"!./src/typeorm.ts",
"!./src/browser-shim.ts",
"!./src/typeorm-model-shim.ts",
"!./src/platform/PlatformTools.ts"
])
.pipe(gulp.dest("./build/browser/typeorm"));
@ -243,11 +243,11 @@ export class Gulpfile {
}
/**
* Copies "browser-shim.js" file into package.
* Copies "typeorm-model-shim.js" file into package.
*/
@Task()
packageCopyBrowserShim() {
return gulp.src("./extra/browser-shim.js")
packageCopyModelShim() {
return gulp.src("./extra/typeorm-model-shim.js")
.pipe(gulp.dest("./build/package"));
}
@ -264,7 +264,7 @@ export class Gulpfile {
"packageReplaceReferences",
"packagePreparePackageFile",
"packageCopyReadme",
"packageCopyBrowserShim"
"packageCopyModelShim"
],
];
}

View File

@ -1,7 +1,7 @@
{
"name": "typeorm",
"private": true,
"version": "0.0.7-alpha.20",
"version": "0.0.7-alpha.21",
"description": "Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, WebSQL databases.",
"license": "MIT",
"readmeFilename": "README.md",