Skip to content

Commit

Permalink
fix builds
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelyali committed May 19, 2018
1 parent a74f502 commit 4995ed5
Show file tree
Hide file tree
Showing 23 changed files with 13 additions and 11 deletions.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions build/crud-service.interface.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions build/crud.controller.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion build/dist/crud-service.interface.js.map

This file was deleted.

1 change: 0 additions & 1 deletion build/dist/crud.controller.js.map

This file was deleted.

1 change: 0 additions & 1 deletion build/dist/index.js.map

This file was deleted.

1 change: 0 additions & 1 deletion build/dist/typeorm/crud-typeorm.service.js.map

This file was deleted.

1 change: 0 additions & 1 deletion build/dist/typeorm/index.js.map

This file was deleted.

File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions build/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions build/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@nestjsx/crud",
"version": "0.1.0",
"version": "0.1.1",
"description": "Nest CRUD for RESTful APIs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/zMotivat0r/nest-crud.git"
Expand Down
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions build/typeorm/crud-typeorm.service.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions build/typeorm/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestjsx/crud",
"version": "0.1.0",
"version": "0.1.1",
"description": "Nest CRUD for RESTful APIs",
"scripts": {
"dep:check": "npm-check",
Expand All @@ -12,7 +12,9 @@
"test:all": "npm run test && npm run test:e2e",
"coverage":
"node_modules/.bin/jest --verbose --coverage --config ./jest.json --coverageReporters=text-lcov | coveralls",
"build": "rm -rf build/dist && node_modules/.bin/tsc"
"clean":
"cd build && rm -rf `ls | grep -v \"LICENSE\\|package.json\\|README.md\"`",
"build": "npm run clean && node_modules/.bin/tsc"
},
"dependencies": {
"@nestjs/common": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"target": "es6",
"sourceMap": true,
"allowJs": false,
"outDir": "./build/dist",
"outDir": "./build",
"rootDir": "./src",
"skipLibCheck": true
},
Expand Down

0 comments on commit 4995ed5

Please sign in to comment.