Skip to content

Commit 933bfe5

Browse files
authored
Merge pull request #898 from samchon/features/package-config
Adjust nonara/ts-patch#138
2 parents 3b256a5 + a48f6a5 commit 933bfe5

5 files changed

Lines changed: 25 additions & 10 deletions

File tree

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
{
22
"name": "typia",
3-
"version": "5.3.3",
3+
"version": "5.3.4",
44
"description": "Superfast runtime validators with only one line",
55
"main": "lib/index.js",
66
"typings": "lib/index.d.ts",
77
"bin": {
88
"typia": "./lib/executable/typia.js"
99
},
10+
"tsp": {
11+
"tscOptions": {
12+
"parseAllJsDoc": true
13+
}
14+
},
1015
"scripts": {
1116
"test": "npm run package:tgz",
1217
"-------------------------------------------------": "",

packages/benchmark/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"build": "rimraf bin && tsc",
99
"build:actions": "rimraf bin && tsc -p tsconfig.actions.json",
10-
"prepare": "ts-patch install && typia patch",
10+
"prepare": "ts-patch install",
1111
"prettier": "prettier ./src/**/*.ts --write",
1212
"start": "node bin",
1313
"template": "ts-node src/template && npm run prettier && npm run build"
@@ -73,6 +73,6 @@
7373
"suppress-warnings": "^1.0.2",
7474
"tstl": "^2.5.13",
7575
"uuid": "^9.0.1",
76-
"typia": "D:\\github\\samchon\\typia\\typia-5.3.3.tgz"
76+
"typia": "D:\\github\\samchon\\typia\\typia-5.3.4.tgz"
7777
}
7878
}

packages/errors/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"main": "index.js",
77
"scripts": {
88
"build": "rimraf bin && tsc",
9-
"prepare": "ts-patch install && typia patch",
9+
"prepare": "ts-patch install",
1010
"prettier": "prettier ./src/**/*.ts --write",
1111
"setup": "node build/setup.js",
1212
"start": "node index"
@@ -32,6 +32,6 @@
3232
"typescript": "^5.3.2"
3333
},
3434
"dependencies": {
35-
"typia": "D:\\github\\samchon\\typia\\typia-5.3.3.tgz"
35+
"typia": "D:\\github\\samchon\\typia\\typia-5.3.4.tgz"
3636
}
3737
}

packages/test/package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@
44
"version": "0.1.0",
55
"description": "Test program for typia",
66
"main": "bin/index.js",
7+
"tsp": {
8+
"tscOptions": {
9+
"parseAllJsDoc": true
10+
}
11+
},
712
"scripts": {
813
"build": "rimraf bin && tsc",
914
"build:actions": "rimraf bin && tsc -p tsconfig.actions.json",
10-
"prepare": "ts-patch install && typia patch",
15+
"prepare": "ts-patch install",
1116
"prettier": "prettier ./src/**/*.ts --write",
1217
"setup": "node build/setup.js",
1318
"start": "node bin",
@@ -35,7 +40,7 @@
3540
"prettier": "^2.6.2",
3641
"rimraf": "^5.0.5",
3742
"ts-node": "^10.9.1",
38-
"ts-patch": "^3.0.2",
43+
"ts-patch": "^3.1.0",
3944
"typescript": "^5.3.2"
4045
},
4146
"dependencies": {
@@ -46,6 +51,6 @@
4651
"suppress-warnings": "^1.0.2",
4752
"tstl": "^2.5.13",
4853
"uuid": "^9.0.1",
49-
"typia": "D:\\github\\samchon\\typia\\typia-5.3.3.tgz"
54+
"typia": "D:\\github\\samchon\\typia\\typia-5.3.4.tgz"
5055
}
5156
}

packages/typescript-json/package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
22
"name": "typescript-json",
3-
"version": "5.3.3",
3+
"version": "5.3.4",
44
"description": "Superfast runtime validators with only one line",
55
"main": "lib/index.js",
66
"typings": "lib/index.d.ts",
7+
"tsp": {
8+
"tscOptions": {
9+
"parseAllJsDoc": true
10+
}
11+
},
712
"scripts": {
813
"test": "npm run package:tgz",
914
"-------------------------------------------------": "",
@@ -56,7 +61,7 @@
5661
},
5762
"homepage": "https://typia.io",
5863
"dependencies": {
59-
"typia": "5.3.3"
64+
"typia": "5.3.4"
6065
},
6166
"peerDependencies": {
6267
"typescript": ">=4.8.0 <5.4.0"

0 commit comments

Comments
 (0)