umt 2.2.0 → 2.3.0
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/module/Function/curry.d.ts +141 -0
- package/module/Function/curry.js +11 -0
- package/module/Function/curry.js.map +1 -0
- package/module/Function/index.d.ts +1 -0
- package/module/Function/index.js +2 -0
- package/module/Function/index.js.map +1 -0
- package/module/Tool/index.d.ts +1 -0
- package/module/Tool/index.js +1 -0
- package/module/Tool/index.js.map +1 -1
- package/module/Tool/pipe.d.ts +66 -0
- package/module/Tool/pipe.js +98 -0
- package/module/Tool/pipe.js.map +1 -0
- package/module/Validate/index.d.ts +1 -0
- package/module/Validate/index.js +1 -0
- package/module/Validate/index.js.map +1 -1
- package/module/Validate/isBun.js +0 -1
- package/module/Validate/isBun.js.map +1 -1
- package/module/Validate/isString.d.ts +9 -0
- package/module/Validate/isString.js +12 -0
- package/module/Validate/isString.js.map +1 -0
- package/module/es5/Function/curry.d.ts +141 -0
- package/module/es5/Function/curry.js +38 -0
- package/module/es5/Function/index.d.ts +1 -0
- package/module/es5/Function/index.js +16 -0
- package/module/es5/Tool/index.d.ts +1 -0
- package/module/es5/Tool/index.js +11 -0
- package/module/es5/Tool/pipe.d.ts +66 -0
- package/module/es5/Tool/pipe.js +129 -0
- package/module/es5/Validate/index.d.ts +1 -0
- package/module/es5/Validate/index.js +11 -0
- package/module/es5/Validate/isBun.js +0 -1
- package/module/es5/Validate/isString.d.ts +9 -0
- package/module/es5/Validate/isString.js +16 -0
- package/module/es5/index.d.ts +1 -0
- package/module/es5/index.js +11 -0
- package/module/es5/tests/unit/Function/curry.test.d.ts +1 -0
- package/module/es5/tests/unit/Function/curry.test.js +138 -0
- package/module/es5/tests/unit/Tool/pipe.test.d.ts +1 -0
- package/module/es5/tests/unit/Tool/pipe.test.js +445 -0
- package/module/es5/tsconfig.tsbuildinfo +1 -1
- package/module/index.d.ts +1 -0
- package/module/index.js +1 -0
- package/module/index.js.map +1 -1
- package/package.json +19 -18
package/module/index.d.ts
CHANGED
package/module/index.js
CHANGED
package/module/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,MAAM,CAAC;AACrB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,MAAM,CAAC;AACrB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,MAAM,CAAC;AACrB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,MAAM,CAAC;AACrB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC"}
|
package/package.json
CHANGED
|
@@ -5,31 +5,32 @@
|
|
|
5
5
|
},
|
|
6
6
|
"description": "個人的に作った便利関数集 個人用途なので破壊的変更がある可能性があります。 Main Packageに依存関係はありません。 JavaScriptからの呼び出しに対応しています。",
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"@babel/cli": "^7.
|
|
9
|
-
"@babel/core": "^7.26.
|
|
8
|
+
"@babel/cli": "^7.27.0",
|
|
9
|
+
"@babel/core": "^7.26.10",
|
|
10
10
|
"@babel/preset-env": "^7.26.9",
|
|
11
|
-
"@babel/preset-typescript": "^7.
|
|
11
|
+
"@babel/preset-typescript": "^7.27.0",
|
|
12
12
|
"@biomejs/biome": "1.9.4",
|
|
13
|
-
"@swc/core": "^1.
|
|
13
|
+
"@swc/core": "^1.11.20",
|
|
14
14
|
"@swc/jest": "^0.2.37",
|
|
15
|
+
"@types/bun": "^1.2.9",
|
|
15
16
|
"@types/jest": "^29.5.14",
|
|
16
|
-
"@types/lodash": "^4.17.
|
|
17
|
-
"@types/node": "^22.
|
|
18
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
19
|
-
"@typescript-eslint/parser": "^8.
|
|
20
|
-
"bun-types": "^1.2.
|
|
21
|
-
"dependency-cruiser": "^16.
|
|
22
|
-
"eslint": "^9.
|
|
17
|
+
"@types/lodash": "^4.17.16",
|
|
18
|
+
"@types/node": "^22.14.1",
|
|
19
|
+
"@typescript-eslint/eslint-plugin": "^8.29.1",
|
|
20
|
+
"@typescript-eslint/parser": "^8.29.1",
|
|
21
|
+
"bun-types": "^1.2.9",
|
|
22
|
+
"dependency-cruiser": "^16.10.1",
|
|
23
|
+
"eslint": "^9.24.0",
|
|
23
24
|
"eslint-plugin-import": "^2.31.0",
|
|
24
|
-
"eslint-plugin-unicorn": "^
|
|
25
|
+
"eslint-plugin-unicorn": "^58.0.0",
|
|
25
26
|
"gh-pages": "^6.3.0",
|
|
26
27
|
"jest": "^29.7.0",
|
|
27
28
|
"lodash": "^4.17.21",
|
|
28
|
-
"ts-jest": "^29.2
|
|
29
|
+
"ts-jest": "^29.3.2",
|
|
29
30
|
"ts-node": "^10.9.2",
|
|
30
|
-
"tsc-alias": "^1.8.
|
|
31
|
-
"typedoc": "^0.
|
|
32
|
-
"typescript": "^5.
|
|
31
|
+
"tsc-alias": "^1.8.15",
|
|
32
|
+
"typedoc": "^0.28.2",
|
|
33
|
+
"typescript": "^5.8.3"
|
|
33
34
|
},
|
|
34
35
|
"directories": {
|
|
35
36
|
"doc": "doc",
|
|
@@ -52,7 +53,7 @@
|
|
|
52
53
|
},
|
|
53
54
|
"scripts": {
|
|
54
55
|
"build": "tsc && tsc-alias -p tsconfig.json",
|
|
55
|
-
"build:cjs": "tsc -p tsconfig.cjs.json && node cjs.build.mjs && cp LICENSE common-module/LICENSE && cp README.md common-module/README.md",
|
|
56
|
+
"build:cjs": "tsc -p tsconfig.cjs.json && node cjs.build.mjs && cp LICENSE common-module/LICENSE && cp README.md common-module/README.md && cp .npmignore common-module/.npmignore",
|
|
56
57
|
"build:babel": "babel src --extensions '.ts' --out-dir module/es5 && tsc --emitDeclarationOnly --outDir module/es5",
|
|
57
58
|
"build:cjs:babel": "babel src --extensions '.ts' --out-dir common-module/module/es5 && tsc --emitDeclarationOnly --outDir common-module/module/es5",
|
|
58
59
|
"build:full": "yarn build && yarn build:cjs && yarn build:babel && yarn build:cjs:babel",
|
|
@@ -70,6 +71,6 @@
|
|
|
70
71
|
},
|
|
71
72
|
"type": "module",
|
|
72
73
|
"types": "module/index.d.js",
|
|
73
|
-
"version": "2.
|
|
74
|
+
"version": "2.3.0",
|
|
74
75
|
"packageManager": "yarn@1.22.22"
|
|
75
76
|
}
|