mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
renamed browser shim to typeorm model shim
This commit is contained in:
parent
4d3221c877
commit
07c684bbc4
10
gulpfile.ts
10
gulpfile.ts
@ -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"
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
@ -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",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user