Skip to content

Commit

Permalink
Merge pull request #21 from rudemex/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
rudemex authored Jul 17, 2023
2 parents 1ab0614 + 411d14f commit 387763b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
5 changes: 4 additions & 1 deletion nest-cli.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"webpack": true
"plugins": ["@nestjs/swagger"],
"webpack": true,
"webpackConfigPath": "./node_modules/@tresdoce-nestjs-toolkit/commons/dist-src/build-config/webpack.config.js"
}
}
20 changes: 9 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,11 @@
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=build nest build --webpack",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"build": "cross-env NODE_ENV=build nest build",
"start": "cross-env NODE_ENV=production node dist/main",
"start:nest": "nest start",
"start:dev": "cross-env NODE_ENV=dev nest start --webpack --watch",
"start:debug": "nest start --webpack --debug --watch",
"start:prod": "cross-env NODE_ENV=production node dist/main",
"start:dev": "cross-env NODE_ENV=dev nest start --watch",
"start:debug": "cross-env NODE_ENV=dev nest start --debug --watch",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"pre-commit": "lint-staged",
"test": "jest --runInBand --detectOpenHandles --forceExit --coverage",
Expand Down Expand Up @@ -63,9 +61,9 @@
"@nestjs/core": "^9.4.2",
"@nestjs/platform-express": "^9.4.2",
"@nestjs/swagger": "^6.3.0",
"@tresdoce-nestjs-toolkit/archetype": "^0.4.2",
"@tresdoce-nestjs-toolkit/http-client": "^0.2.2",
"@tresdoce-nestjs-toolkit/paas": "^0.5.0",
"@tresdoce-nestjs-toolkit/archetype": "^0.4.3",
"@tresdoce-nestjs-toolkit/http-client": "^0.2.3",
"@tresdoce-nestjs-toolkit/paas": "^0.5.1",
"class-transformer": "^0.5.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
Expand All @@ -83,8 +81,8 @@
"@nestjs/cli": "^9.5.0",
"@nestjs/schematics": "^9.2.0",
"@nestjs/testing": "^9.4.2",
"@tresdoce-nestjs-toolkit/commons": "^0.2.1",
"@tresdoce-nestjs-toolkit/test-utils": "^0.5.0",
"@tresdoce-nestjs-toolkit/commons": "^0.2.2",
"@tresdoce-nestjs-toolkit/test-utils": "^0.5.1",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^20.2.3",
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"declaration": false,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
Expand All @@ -19,7 +19,7 @@
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"allowJs": true,
"allowJs": true
},
"exclude": [
"node_modules",
Expand Down

0 comments on commit 387763b

Please sign in to comment.