Skip to content

Commit

Permalink
🚒 [release]: publish tdv-core v2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
brunotot committed Jan 12, 2024
1 parent d61e270 commit d0b9069
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/core/package-lock.json

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

4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tdv-core",
"version": "2.0.2",
"version": "2.0.3",
"description": "Typescript form validation using Decorators",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
Expand All @@ -13,7 +13,7 @@
"lint": "echo \"No linting configured\"",
"clean": "rm -rf dist",
"build": "npm run clean && npm run test && tsc",
"build:noTest": "npm run clean && tsc && npx tsc-alias -p tsconfig.alias.json",
"build:noTest": "npm run clean && tsc && npx tsc-alias -p tsc-alias/tsconfig.declarations.json && npx tsc-alias -p tsc-alias/tsconfig.javascript.json",
"deploy:minor": "bash ../../scripts/deploy.sh core minor",
"deploy:major": "bash ../../scripts/deploy.sh core major",
"deploy:patch": "bash ../../scripts/deploy.sh core patch",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"outDir": "dist/types",
"outDir": "../dist/types",
"paths": {
"@decorators": ["src/decorators"],
"@decorators/*": ["src/decorators/*"],
Expand Down
25 changes: 25 additions & 0 deletions packages/core/tsc-alias/tsconfig.javascript.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"exclude": ["types"],
"compilerOptions": {
"outDir": "../dist",
"paths": {
"@decorators": ["src/decorators"],
"@decorators/*": ["src/decorators/*"],

"@validation": ["src/validation"],
"@validation/*": ["src/validation/*"],

"@reflection": ["src/reflection"],
"@reflection/*": ["src/reflection/*"],

"@utilities": ["src/utilities"],
"@utilities/*": ["src/utilities/*"],

"@strategy": ["src/strategy"],
"@strategy/*": ["src/strategy/*"],

"@localization": ["src/localization"],
"@localization/*": ["src/localization/*"]
}
}
}

0 comments on commit d0b9069

Please sign in to comment.