Skip to content

Commit

Permalink
updated deps and fixed commands
Browse files Browse the repository at this point in the history
  • Loading branch information
pleerock committed Mar 1, 2019
1 parent e2e9118 commit b422c3b
Show file tree
Hide file tree
Showing 17 changed files with 1,630 additions and 661 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ feel free to ask us and community.

### Bug fixes

* fixed bug in `connection.dropDatabase` method ([#1414](https://github.com/typeorm/typeorm/pull/3727))
* updated all dependencies

### Features

* added `uuidExtension` option to Postgres connection options, which allows TypeORM to use the newer `pgcrypto` extension to generate UUIDs
Expand Down
9 changes: 7 additions & 2 deletions gulpfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,13 @@ export class Gulpfile {
*/
@MergedTask()
packageCompile() {
const tsProject = ts.createProject("tsconfig.json", { typescript: require("typescript") });
const tsResult = gulp.src(["./src/**/*.ts", "./node_modules/@types/**/*.ts"])
const tsProject = ts.createProject("tsconfig.json", {
typescript: require("typescript")
});
const tsResult = gulp.src([
"./src/**/*.ts",
"./node_modules/@types/**/*.ts",
])
.pipe(sourcemaps.init())
.pipe(tsProject());

Expand Down
Loading

0 comments on commit b422c3b

Please sign in to comment.