@bbodek/utils 0.0.18 → 0.0.19
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/README.md +1 -1
- package/dist/composeEventHandler/types/index.d.ts +1 -1
- package/dist/composeEventHandler/types/index.d.ts.map +1 -1
- package/dist/excelDownload/excelDownload.d.ts.map +1 -1
- package/dist/extractDifferences/index.d.ts +1 -0
- package/dist/extractDifferences/index.d.ts.map +1 -1
- package/dist/extractExt/extractExt.d.ts +2 -2
- package/dist/extractExt/extractExt.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.es.js +2430 -24
- package/dist/index.es.js.map +1 -1
- package/dist/parseExt/parseExt.d.ts +2 -2
- package/dist/parseExt/parseExt.d.ts.map +1 -1
- package/dist/removeExt/removeExt.d.ts +2 -2
- package/dist/removeExt/removeExt.d.ts.map +1 -1
- package/dist/shared/types/Ext.d.ts +1 -1
- package/dist/shared/types/Ext.d.ts.map +1 -1
- package/package.json +20 -14
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"parseExt.d.ts","sourceRoot":"","sources":["../../src/parseExt/parseExt.ts"],"names":[],"mappings":"AAEA,OAAO,EAAgB,
|
|
1
|
+
{"version":3,"file":"parseExt.d.ts","sourceRoot":"","sources":["../../src/parseExt/parseExt.ts"],"names":[],"mappings":"AAEA,OAAO,EAAgB,WAAW,EAAE,MAAM,UAAU,CAAC;AAErD,eAAO,MAAM,QAAQ,GAAI,iBAAgC,WAAW;;;CAkBnE,CAAC"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare const removeExt: ({ accept, str }:
|
|
1
|
+
import { ExtFnParams } from '../shared';
|
|
2
|
+
export declare const removeExt: ({ accept, str }: ExtFnParams) => string;
|
|
3
3
|
//# sourceMappingURL=removeExt.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"removeExt.d.ts","sourceRoot":"","sources":["../../src/removeExt/removeExt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAgB,
|
|
1
|
+
{"version":3,"file":"removeExt.d.ts","sourceRoot":"","sources":["../../src/removeExt/removeExt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAgB,WAAW,EAAE,MAAM,UAAU,CAAC;AAErD,eAAO,MAAM,SAAS,GAAI,iBAAgC,WAAW,WAIlE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Ext.d.ts","sourceRoot":"","sources":["../../../src/shared/types/Ext.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAEzD,MAAM,MAAM,aAAa,GACvB,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,OAAO,eAAe,CAAC,CAAC;AAEzD,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"Ext.d.ts","sourceRoot":"","sources":["../../../src/shared/types/Ext.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAEzD,MAAM,MAAM,aAAa,GACvB,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,OAAO,eAAe,CAAC,CAAC;AAEzD,MAAM,WAAW,WAAW;IAC1B,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,aAAa,EAAE,CAAC;CAC1B"}
|
package/package.json
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bbodek/utils",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.19",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/thebbodek/dotoli",
|
|
9
|
+
"directory": "apps/utils"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/thebbodek/dotoli/tree/main/apps/utils#readme",
|
|
6
12
|
"exports": {
|
|
7
13
|
".": {
|
|
8
14
|
"import": "./dist/index.es.js",
|
|
@@ -12,12 +18,6 @@
|
|
|
12
18
|
"files": [
|
|
13
19
|
"dist"
|
|
14
20
|
],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"dev": "rollup -c --watch & tsc -p tsconfig.build.json --watch & tsc-alias -p tsconfig.build.json --watch",
|
|
17
|
-
"build": "rollup -c && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
|
|
18
|
-
"start": "next start",
|
|
19
|
-
"lint": "next lint"
|
|
20
|
-
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"dayjs": "^1.11.13",
|
|
23
23
|
"es-toolkit": "^1.39.8",
|
|
@@ -25,16 +25,13 @@
|
|
|
25
25
|
"xlsx-js-style": "^1.2.0"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@bbodek/internal-ui": "^0.0.
|
|
28
|
+
"@bbodek/internal-ui": "^0.0.48",
|
|
29
29
|
"next": "^15.3.1",
|
|
30
30
|
"react": "^19.1.0",
|
|
31
31
|
"react-dom": "^19.1.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@bbodek/internal-ui": "^0.0.
|
|
35
|
-
"@dotoli/eslint-config": "workspace:*",
|
|
36
|
-
"@dotoli/typescript-config": "workspace:*",
|
|
37
|
-
"@dotoli/rollup-config": "workspace:*",
|
|
34
|
+
"@bbodek/internal-ui": "^0.0.48",
|
|
38
35
|
"@types/node": "^20",
|
|
39
36
|
"@types/react": "^19",
|
|
40
37
|
"@types/react-dom": "^19",
|
|
@@ -45,6 +42,15 @@
|
|
|
45
42
|
"rollup": "^4.40.2",
|
|
46
43
|
"tsc-alias": "^1.8.16",
|
|
47
44
|
"tslib": "^2.8.1",
|
|
48
|
-
"typescript": "^5.8.3"
|
|
45
|
+
"typescript": "^5.8.3",
|
|
46
|
+
"@bbodek/eslint-config": "0.0.4",
|
|
47
|
+
"@dotoli/rollup-config": "0.0.0",
|
|
48
|
+
"@dotoli/typescript-config": "0.0.0"
|
|
49
|
+
},
|
|
50
|
+
"scripts": {
|
|
51
|
+
"dev": "rollup -c --watch & tsc -p tsconfig.build.json --watch & tsc-alias -p tsconfig.build.json --watch",
|
|
52
|
+
"build": "rollup -c && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
|
|
53
|
+
"start": "next start",
|
|
54
|
+
"lint": "eslint \"./src\" --ext .ts,.tsx"
|
|
49
55
|
}
|
|
50
|
-
}
|
|
56
|
+
}
|