@pdg/data 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lv.d.ts +1 -1
- package/dist/vl.d.ts +1 -1
- package/package.json +8 -2
package/dist/lv.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* @param other - 기타 속성
|
|
6
6
|
* @returns 생성된 객체
|
|
7
7
|
* ******************************************************************************************************************/
|
|
8
|
-
export declare function lv<L, V, Other extends {
|
|
8
|
+
export declare function lv<L, const V, Other extends {
|
|
9
9
|
[key: string]: unknown;
|
|
10
10
|
}>(label: L, value: V, other?: Other): {
|
|
11
11
|
label: L;
|
package/dist/vl.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* @param other - 기타 속성
|
|
6
6
|
* @returns 생성된 객체
|
|
7
7
|
* ******************************************************************************************************************/
|
|
8
|
-
export declare function vl<V, L, Other extends {
|
|
8
|
+
export declare function vl<const V, L, Other extends {
|
|
9
9
|
[key: string]: unknown;
|
|
10
10
|
}>(value: V, label: L, other?: Other): {
|
|
11
11
|
value: V;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@pdg/data",
|
|
3
3
|
"title": "Typescript Data Module",
|
|
4
4
|
"description": "Typescript Data Module",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.2",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"module": "./dist/index.esm.js",
|
|
@@ -30,9 +30,15 @@
|
|
|
30
30
|
"scripts": {
|
|
31
31
|
"dev": "cd examples && npm run dev",
|
|
32
32
|
"build": "npm run test && npm run lint && rollup -c --bundleConfigAsCjs",
|
|
33
|
+
"git:commit": "node .git-commit.cjs",
|
|
34
|
+
"git:push": "git push",
|
|
35
|
+
"git:commit:push": "npm run git:commit && npm run git:push",
|
|
36
|
+
"git:merge:mirror": "node .git-merge.cjs mirror main",
|
|
37
|
+
"reset:gitignore": "git rm -r --cached . && git add .",
|
|
33
38
|
"pub": "npm i && npm run build && npm publish --access=public && rm ./.git/hooks/pre-commit",
|
|
34
39
|
"lint": "eslint './src/**/*.ts'",
|
|
35
|
-
"reinstall
|
|
40
|
+
"reinstall": "npm run reinstall:module",
|
|
41
|
+
"reinstall:module": "rm -rf node_modules && rm -f package-lock.json && npm i",
|
|
36
42
|
"test": "jest"
|
|
37
43
|
},
|
|
38
44
|
"author": "YOUNG CHUL PARK",
|