@kirill.konshin/utils 0.0.20 → 0.0.21
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/bootstrap/index.js +2 -0
- package/dist/browser/index.js +2 -0
- package/dist/core/index.js +2 -0
- package/dist/electron/index.js +2 -0
- package/dist/electron-builder/index.js +2 -0
- package/dist/index.d.ts +12 -12
- package/dist/index.js +13 -27
- package/dist/mui/index.js +2 -0
- package/dist/next/index.js +2 -0
- package/dist/node/index.js +2 -0
- package/dist/react/index.js +2 -0
- package/dist/react-native/index.js +2 -0
- package/dist/tailwind/index.js +2 -0
- package/dist/worker/index.js +2 -0
- package/package.json +15 -5
- package/.ctirc +0 -20
- package/.storybook/main.ts +0 -2
- package/.storybook/preview.ts +0 -2
- package/.turbo/turbo-build.log +0 -15
- package/CHANGELOG.md +0 -137
- package/dist/index.js.map +0 -1
- package/src/bootstrap/index.ts +0 -2
- package/src/browser/index.ts +0 -2
- package/src/core/index.ts +0 -2
- package/src/electron/index.ts +0 -2
- package/src/electron-builder/index.ts +0 -2
- package/src/index.ts +0 -12
- package/src/mui/index.ts +0 -2
- package/src/next/index.ts +0 -2
- package/src/node/index.ts +0 -2
- package/src/react/index.ts +0 -2
- package/src/react-native/index.ts +0 -2
- package/src/tailwind/index.ts +0 -2
- package/src/worker/index.ts +0 -2
- package/tsconfig.json +0 -10
- package/turbo.json +0 -10
- package/vite.config.ts +0 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export * from './bootstrap';
|
|
2
|
-
export * from './browser';
|
|
3
|
-
export * from './core';
|
|
4
|
-
export * from './electron';
|
|
5
|
-
export * from './electron-builder';
|
|
6
|
-
export * from './mui';
|
|
7
|
-
export * from './next';
|
|
8
|
-
export * from './node';
|
|
9
|
-
export * from './react';
|
|
10
|
-
export * from './react-native';
|
|
11
|
-
export * from './tailwind';
|
|
12
|
-
export * from './worker';
|
|
1
|
+
export * from './bootstrap/index.js';
|
|
2
|
+
export * from './browser/index.js';
|
|
3
|
+
export * from './core/index.js';
|
|
4
|
+
export * from './electron/index.js';
|
|
5
|
+
export * from './electron-builder/index.js';
|
|
6
|
+
export * from './mui/index.js';
|
|
7
|
+
export * from './next/index.js';
|
|
8
|
+
export * from './node/index.js';
|
|
9
|
+
export * from './react/index.js';
|
|
10
|
+
export * from './react-native/index.js';
|
|
11
|
+
export * from './tailwind/index.js';
|
|
12
|
+
export * from './worker/index.js';
|
|
13
13
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -1,27 +1,13 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
export {
|
|
14
|
-
bootstrap,
|
|
15
|
-
browser,
|
|
16
|
-
core,
|
|
17
|
-
electron,
|
|
18
|
-
electronBuilder,
|
|
19
|
-
mui,
|
|
20
|
-
next,
|
|
21
|
-
node,
|
|
22
|
-
react,
|
|
23
|
-
reactNative,
|
|
24
|
-
tailwind,
|
|
25
|
-
worker
|
|
26
|
-
};
|
|
27
|
-
//# sourceMappingURL=index.js.map
|
|
1
|
+
import { bootstrap } from "./bootstrap/index.js";
|
|
2
|
+
import { browser } from "./browser/index.js";
|
|
3
|
+
import { core } from "./core/index.js";
|
|
4
|
+
import { electron } from "./electron/index.js";
|
|
5
|
+
import { electronBuilder } from "./electron-builder/index.js";
|
|
6
|
+
import { mui } from "./mui/index.js";
|
|
7
|
+
import { next } from "./next/index.js";
|
|
8
|
+
import { node } from "./node/index.js";
|
|
9
|
+
import { react } from "./react/index.js";
|
|
10
|
+
import { reactNative } from "./react-native/index.js";
|
|
11
|
+
import { tailwind } from "./tailwind/index.js";
|
|
12
|
+
import { worker } from "./worker/index.js";
|
|
13
|
+
export { bootstrap, browser, core, electron, electronBuilder, mui, next, node, react, reactNative, tailwind, worker };
|
package/package.json
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kirill.konshin/utils",
|
|
3
3
|
"description": "Utilities",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.21",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"----- BUILD -----": "",
|
|
8
8
|
"clean": "rm -rf dist .tscache tsconfig.tsbuildinfo",
|
|
9
9
|
"build": "vite build",
|
|
10
|
-
"build:index": "ctix build",
|
|
11
|
-
"build:check-types": "attw --pack .",
|
|
12
10
|
"start": "yarn build --watch",
|
|
13
11
|
"wait": "wait-on ./dist/index.js",
|
|
14
12
|
"----- TEST -----": "",
|
|
15
|
-
"test
|
|
13
|
+
"test": "vitest run --coverage",
|
|
16
14
|
"test:watch": "vitest watch --coverage",
|
|
17
15
|
"----- STORYBOOK -----": "",
|
|
18
16
|
"storybook:start": "storybook dev -p 6006",
|
|
@@ -123,5 +121,17 @@
|
|
|
123
121
|
"main": "./dist/index.js",
|
|
124
122
|
"module": "./dist/index.js",
|
|
125
123
|
"types": "./dist/index.d.ts",
|
|
126
|
-
"
|
|
124
|
+
"repository": {
|
|
125
|
+
"type": "git",
|
|
126
|
+
"url": "https://github.com/kirill-konshin/utils.git",
|
|
127
|
+
"directory": "packages/utils"
|
|
128
|
+
},
|
|
129
|
+
"nx": {
|
|
130
|
+
"tags": [
|
|
131
|
+
"platform:umbrella"
|
|
132
|
+
]
|
|
133
|
+
},
|
|
134
|
+
"files": [
|
|
135
|
+
"dist"
|
|
136
|
+
]
|
|
127
137
|
}
|
package/.ctirc
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"options": [
|
|
3
|
-
{
|
|
4
|
-
"mode": "create",
|
|
5
|
-
"project": "tsconfig.json",
|
|
6
|
-
"include": "src/**/*.{ts,tsx}",
|
|
7
|
-
"exclude": [
|
|
8
|
-
"**/*.stories.*",
|
|
9
|
-
"**/*.test.*",
|
|
10
|
-
"**/*.fixture.*"
|
|
11
|
-
],
|
|
12
|
-
"startFrom": "src",
|
|
13
|
-
"backup": false,
|
|
14
|
-
"overwrite": true,
|
|
15
|
-
"generationStyle": "default-alias-named-star",
|
|
16
|
-
"output": "src",
|
|
17
|
-
"verbose": true
|
|
18
|
-
}
|
|
19
|
-
]
|
|
20
|
-
}
|
package/.storybook/main.ts
DELETED
package/.storybook/preview.ts
DELETED
package/.turbo/turbo-build.log
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
[36mvite v7.0.6 [32mbuilding SSR bundle for production...[36m[39m
|
|
2
|
-
- ctix 'create' mode start, ...
|
|
3
|
-
✔ /home/runner/work/utils/utils/packages/utils/tsconfig.json loading complete!
|
|
4
|
-
✔ analysis export statements completed!
|
|
5
|
-
✖ Cannot find target files. Please add --include option or add include section in .ctirc file
|
|
6
|
-
transforming...
|
|
7
|
-
[32m✓[39m 13 modules transformed.
|
|
8
|
-
rendering chunks...
|
|
9
|
-
|
|
10
|
-
[vite:dts] Start generate declaration files...
|
|
11
|
-
[2mdist/[22m[36mindex.js [39m[1m[2m0.80 kB[22m[1m[22m[2m │ map: 0.10 kB[22m
|
|
12
|
-
[vite:dts] Declaration files built in 1931ms.
|
|
13
|
-
|
|
14
|
-
[32m✓ built in 5.29s[39m
|
|
15
|
-
Updated package.json with exports
|
package/CHANGELOG.md
DELETED
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
# @kirill.konshin/utils
|
|
2
|
-
|
|
3
|
-
## 0.0.20
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- 63fdba8: Agent-assisted refactoring
|
|
8
|
-
- 63fdba8: Divided core to browser/node/worker-specific packages, CTIX upgrade, etc.
|
|
9
|
-
- Updated dependencies [63fdba8]
|
|
10
|
-
- Updated dependencies [63fdba8]
|
|
11
|
-
- @kirill.konshin/react-native@0.0.2
|
|
12
|
-
- @kirill.konshin/bootstrap@0.0.2
|
|
13
|
-
- @kirill.konshin/tailwind@0.0.2
|
|
14
|
-
- @kirill.konshin/react@0.0.2
|
|
15
|
-
- @kirill.konshin/core@0.0.2
|
|
16
|
-
- @kirill.konshin/next@0.0.2
|
|
17
|
-
- @kirill.konshin/mui@0.0.2
|
|
18
|
-
- @kirill.konshin/electron-builder@0.0.2
|
|
19
|
-
- @kirill.konshin/electron@0.0.2
|
|
20
|
-
- @kirill.konshin/browser@0.0.2
|
|
21
|
-
- @kirill.konshin/worker@0.0.2
|
|
22
|
-
- @kirill.konshin/node@0.0.2
|
|
23
|
-
|
|
24
|
-
## 0.0.19
|
|
25
|
-
|
|
26
|
-
### Patch Changes
|
|
27
|
-
|
|
28
|
-
- Strong types
|
|
29
|
-
|
|
30
|
-
## 0.0.18
|
|
31
|
-
|
|
32
|
-
### Patch Changes
|
|
33
|
-
|
|
34
|
-
- File Saver fix
|
|
35
|
-
|
|
36
|
-
## 0.0.17
|
|
37
|
-
|
|
38
|
-
### Patch Changes
|
|
39
|
-
|
|
40
|
-
- File Saver fix
|
|
41
|
-
|
|
42
|
-
## 0.0.16
|
|
43
|
-
|
|
44
|
-
### Patch Changes
|
|
45
|
-
|
|
46
|
-
- File Saver patch
|
|
47
|
-
|
|
48
|
-
## 0.0.15
|
|
49
|
-
|
|
50
|
-
### Patch Changes
|
|
51
|
-
|
|
52
|
-
- WRPC
|
|
53
|
-
|
|
54
|
-
## 0.0.14
|
|
55
|
-
|
|
56
|
-
### Patch Changes
|
|
57
|
-
|
|
58
|
-
- Preserve directives for Vite
|
|
59
|
-
|
|
60
|
-
## 0.0.13
|
|
61
|
-
|
|
62
|
-
### Patch Changes
|
|
63
|
-
|
|
64
|
-
- Exports
|
|
65
|
-
|
|
66
|
-
## 0.0.12
|
|
67
|
-
|
|
68
|
-
### Patch Changes
|
|
69
|
-
|
|
70
|
-
- AppLink types
|
|
71
|
-
|
|
72
|
-
## 0.0.11
|
|
73
|
-
|
|
74
|
-
### Patch Changes
|
|
75
|
-
|
|
76
|
-
- Demos, consolidated packages, tests, Vite, perf tests
|
|
77
|
-
|
|
78
|
-
## 0.0.10
|
|
79
|
-
|
|
80
|
-
### Patch Changes
|
|
81
|
-
|
|
82
|
-
- Demos, consolidated packages, tests, Vite, perf tests
|
|
83
|
-
|
|
84
|
-
## 0.0.9
|
|
85
|
-
|
|
86
|
-
### Patch Changes
|
|
87
|
-
|
|
88
|
-
- 89690b2: Demos, consolidated packages, tests, Vite, perf tests
|
|
89
|
-
|
|
90
|
-
## 0.0.8
|
|
91
|
-
|
|
92
|
-
### Patch Changes
|
|
93
|
-
|
|
94
|
-
- Cache fixes
|
|
95
|
-
|
|
96
|
-
## 0.0.7
|
|
97
|
-
|
|
98
|
-
### Patch Changes
|
|
99
|
-
|
|
100
|
-
- Deps upgrade
|
|
101
|
-
- Better Cache API
|
|
102
|
-
|
|
103
|
-
## 0.0.6
|
|
104
|
-
|
|
105
|
-
### Patch Changes
|
|
106
|
-
|
|
107
|
-
- Various updates & fixes, Electron implementation
|
|
108
|
-
|
|
109
|
-
## 0.0.4
|
|
110
|
-
|
|
111
|
-
### Patch Changes
|
|
112
|
-
|
|
113
|
-
- 70e3912: Types fix
|
|
114
|
-
|
|
115
|
-
## 0.0.5
|
|
116
|
-
|
|
117
|
-
### Patch Changes
|
|
118
|
-
|
|
119
|
-
- Flat utils, error, misc fixes
|
|
120
|
-
|
|
121
|
-
## 0.0.4
|
|
122
|
-
|
|
123
|
-
### Patch Changes
|
|
124
|
-
|
|
125
|
-
- 70e3912: Types fix
|
|
126
|
-
|
|
127
|
-
## 0.0.3
|
|
128
|
-
|
|
129
|
-
### Patch Changes
|
|
130
|
-
|
|
131
|
-
- f1ddebe: Fixed API
|
|
132
|
-
|
|
133
|
-
## 0.0.2
|
|
134
|
-
|
|
135
|
-
### Patch Changes
|
|
136
|
-
|
|
137
|
-
- 7e76543: Initial release
|
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
|
package/src/bootstrap/index.ts
DELETED
package/src/browser/index.ts
DELETED
package/src/core/index.ts
DELETED
package/src/electron/index.ts
DELETED
package/src/index.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export * from './bootstrap';
|
|
2
|
-
export * from './browser';
|
|
3
|
-
export * from './core';
|
|
4
|
-
export * from './electron';
|
|
5
|
-
export * from './electron-builder';
|
|
6
|
-
export * from './mui';
|
|
7
|
-
export * from './next';
|
|
8
|
-
export * from './node';
|
|
9
|
-
export * from './react';
|
|
10
|
-
export * from './react-native';
|
|
11
|
-
export * from './tailwind';
|
|
12
|
-
export * from './worker';
|
package/src/mui/index.ts
DELETED
package/src/next/index.ts
DELETED
package/src/node/index.ts
DELETED
package/src/react/index.ts
DELETED
package/src/tailwind/index.ts
DELETED
package/src/worker/index.ts
DELETED
package/tsconfig.json
DELETED
package/turbo.json
DELETED
package/vite.config.ts
DELETED