@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.
@@ -0,0 +1,2 @@
1
+ import * as bootstrap from "@kirill.konshin/bootstrap";
2
+ export { bootstrap };
@@ -0,0 +1,2 @@
1
+ import * as browser from "@kirill.konshin/browser";
2
+ export { browser };
@@ -0,0 +1,2 @@
1
+ import * as core from "@kirill.konshin/core";
2
+ export { core };
@@ -0,0 +1,2 @@
1
+ import * as electron from "@kirill.konshin/electron";
2
+ export { electron };
@@ -0,0 +1,2 @@
1
+ import * as electronBuilder from "@kirill.konshin/electron-builder";
2
+ export { electronBuilder };
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 * as bootstrap from "@kirill.konshin/bootstrap";
2
- import * as browser from "@kirill.konshin/browser";
3
- import * as core from "@kirill.konshin/core";
4
- import * as electron from "@kirill.konshin/electron";
5
- import * as electronBuilder from "@kirill.konshin/electron-builder";
6
- import * as mui from "@kirill.konshin/mui";
7
- import * as next from "@kirill.konshin/next";
8
- import * as node from "@kirill.konshin/node";
9
- import * as react from "@kirill.konshin/react";
10
- import * as reactNative from "@kirill.konshin/react-native";
11
- import * as tailwind from "@kirill.konshin/tailwind";
12
- import * as worker from "@kirill.konshin/worker";
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 };
@@ -0,0 +1,2 @@
1
+ import * as mui from "@kirill.konshin/mui";
2
+ export { mui };
@@ -0,0 +1,2 @@
1
+ import * as next from "@kirill.konshin/next";
2
+ export { next };
@@ -0,0 +1,2 @@
1
+ import * as node from "@kirill.konshin/node";
2
+ export { node };
@@ -0,0 +1,2 @@
1
+ import * as react from "@kirill.konshin/react";
2
+ export { react };
@@ -0,0 +1,2 @@
1
+ import * as reactNative from "@kirill.konshin/react-native";
2
+ export { reactNative };
@@ -0,0 +1,2 @@
1
+ import * as tailwind from "@kirill.konshin/tailwind";
2
+ export { tailwind };
@@ -0,0 +1,2 @@
1
+ import * as worker from "@kirill.konshin/worker";
2
+ export { 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.20",
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:disabled": "vitest run --coverage",
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
- "peerDependenciesMeta": {}
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
- }
@@ -1,2 +0,0 @@
1
- import config from '../../utils-private/.storybook/main';
2
- export default config;
@@ -1,2 +0,0 @@
1
- import preview from '../../utils-private/.storybook/preview';
2
- export default preview;
@@ -1,15 +0,0 @@
1
- vite v7.0.6 building SSR bundle for production...
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
- ✓ 13 modules transformed.
8
- rendering chunks...
9
-
10
- [vite:dts] Start generate declaration files...
11
- dist/index.js 0.80 kB │ map: 0.10 kB
12
- [vite:dts] Declaration files built in 1931ms.
13
-
14
- ✓ built in 5.29s
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":";;;;;;;;;;;;"}
@@ -1,2 +0,0 @@
1
- // THIS FILE WAS GENERATED, DO NOT EDIT
2
- export * as bootstrap from '@kirill.konshin/bootstrap';
@@ -1,2 +0,0 @@
1
- // THIS FILE WAS GENERATED, DO NOT EDIT
2
- export * as browser from '@kirill.konshin/browser';
package/src/core/index.ts DELETED
@@ -1,2 +0,0 @@
1
- // THIS FILE WAS GENERATED, DO NOT EDIT
2
- export * as core from '@kirill.konshin/core';
@@ -1,2 +0,0 @@
1
- // THIS FILE WAS GENERATED, DO NOT EDIT
2
- export * as electron from '@kirill.konshin/electron';
@@ -1,2 +0,0 @@
1
- // THIS FILE WAS GENERATED, DO NOT EDIT
2
- export * as electronBuilder from '@kirill.konshin/electron-builder';
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
@@ -1,2 +0,0 @@
1
- // THIS FILE WAS GENERATED, DO NOT EDIT
2
- export * as mui from '@kirill.konshin/mui';
package/src/next/index.ts DELETED
@@ -1,2 +0,0 @@
1
- // THIS FILE WAS GENERATED, DO NOT EDIT
2
- export * as next from '@kirill.konshin/next';
package/src/node/index.ts DELETED
@@ -1,2 +0,0 @@
1
- // THIS FILE WAS GENERATED, DO NOT EDIT
2
- export * as node from '@kirill.konshin/node';
@@ -1,2 +0,0 @@
1
- // THIS FILE WAS GENERATED, DO NOT EDIT
2
- export * as react from '@kirill.konshin/react';
@@ -1,2 +0,0 @@
1
- // THIS FILE WAS GENERATED, DO NOT EDIT
2
- export * as reactNative from '@kirill.konshin/react-native';
@@ -1,2 +0,0 @@
1
- // THIS FILE WAS GENERATED, DO NOT EDIT
2
- export * as tailwind from '@kirill.konshin/tailwind';
@@ -1,2 +0,0 @@
1
- // THIS FILE WAS GENERATED, DO NOT EDIT
2
- export * as worker from '@kirill.konshin/worker';
package/tsconfig.json DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "extends": "../utils-private/tsconfig.json",
3
- "compilerOptions": {
4
- "rootDir": "src",
5
- "outDir": "dist",
6
- "declarationDir": "dist"
7
- },
8
- "include": ["src"],
9
- "exclude": []
10
- }
package/turbo.json DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "$schema": "https://turbo.build/schema.json",
3
- "extends": ["//"],
4
- "tasks": {
5
- "build": {
6
- "dependsOn": ["^build"],
7
- "outputs": ["src/**/*/index.ts", "package.json", "dist/**/*"]
8
- }
9
- }
10
- }
package/vite.config.ts DELETED
@@ -1,2 +0,0 @@
1
- import config from '../utils-private/vite.config';
2
- export default config;