Skip to content

Commit

Permalink
fix(source-map): disabled source maps
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewzolotukhin committed May 26, 2023
1 parent a36ab3f commit 15c63ec
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 21 deletions.
2 changes: 1 addition & 1 deletion libs/async/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "1.1.2"
"version": "1.1.3"
}
4 changes: 3 additions & 1 deletion libs/async/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"module": "ES2022",
"esModuleInterop": true,
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"sourceMap": false,
"declarationMap": false
},
"files": ["./src/index.ts"],
"watchOptions": {
Expand Down
2 changes: 1 addition & 1 deletion libs/deep/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "1.1.2"
"version": "1.1.3"
}
4 changes: 3 additions & 1 deletion libs/deep/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"module": "ES2022",
"esModuleInterop": true,
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"sourceMap": false,
"declarationMap": false
},
"files": ["./src/index.ts"],
"watchOptions": {
Expand Down
4 changes: 2 additions & 2 deletions libs/scheduler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"email": "[email protected]"
},
"dependencies": {
"@cleverbrush/schema": "1.1.2"
"@cleverbrush/schema": "1.1.3"
},
"description": "Job Scheduler for NodeJS",
"files": [
Expand Down Expand Up @@ -38,5 +38,5 @@
"tsconfig": "./tsconfig.json"
},
"types": "./dist/index.d.ts",
"version": "1.1.2"
"version": "1.1.3"
}
3 changes: 2 additions & 1 deletion libs/scheduler/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"esModuleInterop": true,
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"sourceMap": true
"sourceMap": false,
"declarationMap": false
},
"files": ["src/index.ts"],
"watchOptions": {
Expand Down
4 changes: 2 additions & 2 deletions libs/schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"displayName": "Schema Definition And Validation",
"tsconfig": "./tsconfig.json"
},
"version": "1.1.2",
"version": "1.1.3",
"devDependencies": {
"@cleverbrush/deep": "1.1.2"
"@cleverbrush/deep": "1.1.3"
}
}
4 changes: 3 additions & 1 deletion libs/schema/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"allowSyntheticDefaultImports": true,
"moduleResolution": "Node",
"strictNullChecks": true,
"noImplicitThis": true
"noImplicitThis": true,
"sourceMap": false,
"declarationMap": false
},
"files": ["./src/index.ts"],
"watchOptions": {
Expand Down
20 changes: 10 additions & 10 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cleverbrush-framework",
"private": "true",
"version": "1.1.2",
"version": "1.1.3",
"description": "Cleverbrush Framework - a set of libraries used by Cleverbrush, a web-based publishing application",
"scripts": {
"build": "npm run clean && npm run build_async && npm run build_deep && npm run build_schema && npm run build_scheduler",
Expand Down

0 comments on commit 15c63ec

Please sign in to comment.