Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
edstevo committed Mar 18, 2021
1 parent a45c75f commit 72abcb6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
index.js
index.ts
index.d.ts
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,22 @@
"nestjs",
"shopify"
],
"files": [
"dist",
"index.js",
"index.d.ts"
],
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"fix": "rm -rf node_modules && rm package-lock.json && npm install",
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"release": "np --no-2fa"
},
"dependencies": {
Expand Down
4 changes: 0 additions & 4 deletions tsconfig.build.json

This file was deleted.

4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,7 @@
"outDir": "./dist",
"baseUrl": "./",
"incremental": true
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
}

0 comments on commit 72abcb6

Please sign in to comment.