@noya-app/noya-designsystem 0.0.9 → 0.0.10

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.
@@ -1,4 +1,7 @@
1
- $ tsup src/index.tsx --format cjs,esm --dts --sourcemap
1
+
2
+ > @noya-app/noya-designsystem@0.0.10 build /Users/devinabbott/Projects/noya-core/packages/noya-designsystem
3
+ > tsup src/index.tsx --format cjs,esm --dts --sourcemap
4
+
2
5
  CLI Building entry: src/index.tsx
3
6
  CLI Using tsconfig: tsconfig.json
4
7
  CLI tsup v8.0.1
@@ -7,11 +10,11 @@ CJS Build start
7
10
  ESM Build start
8
11
  ESM dist/index.mjs 167.98 KB
9
12
  ESM dist/index.mjs.map 366.02 KB
10
- ESM ⚡️ Build success in 79ms
13
+ ESM ⚡️ Build success in 97ms
11
14
  CJS dist/index.js 184.28 KB
12
15
  CJS dist/index.js.map 366.94 KB
13
- CJS ⚡️ Build success in 79ms
16
+ CJS ⚡️ Build success in 97ms
14
17
  DTS Build start
15
- DTS ⚡️ Build success in 5889ms
18
+ DTS ⚡️ Build success in 6093ms
16
19
  DTS dist/index.d.ts 53.26 KB
17
20
  DTS dist/index.d.mts 53.26 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @noya-app/noya-designsystem
2
2
 
3
+ ## 0.0.10
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix deps
8
+
3
9
  ## 0.0.9
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,25 +1,16 @@
1
1
  {
2
2
  "name": "@noya-app/noya-designsystem",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
7
7
  "exports": {
8
8
  ".": "./src/index.tsx"
9
9
  },
10
- "scripts": {
11
- "build": "tsup src/index.tsx --format cjs,esm --dts --sourcemap",
12
- "dev": "npm run build -- --watch"
13
- },
14
10
  "dependencies": {
15
11
  "@dnd-kit/core": "3.1.1",
16
12
  "@dnd-kit/modifiers": "3.0.0",
17
13
  "@dnd-kit/sortable": "4.0.0",
18
- "@noya-app/noya-colorpicker": "workspace:*",
19
- "@noya-app/noya-utils": "workspace:*",
20
- "@noya-app/noya-geometry": "workspace:*",
21
- "@noya-app/noya-icons": "workspace:*",
22
- "@noya-app/noya-keymap": "workspace:*",
23
14
  "@radix-ui/primitive": "^1.0.0",
24
15
  "@radix-ui/react-avatar": "^1.0.1",
25
16
  "@radix-ui/react-compose-refs": "^1.0.0",
@@ -42,9 +33,16 @@
42
33
  "react-virtualized": "^9.22.3",
43
34
  "react-window": "^1.8.8",
44
35
  "styled-components": "5.3.0",
45
- "vscode-fuzzy-scorer": "^0.0.4"
36
+ "vscode-fuzzy-scorer": "^0.0.4",
37
+ "@noya-app/noya-colorpicker": "0.0.4",
38
+ "@noya-app/noya-utils": "0.0.7",
39
+ "@noya-app/noya-geometry": "0.0.8",
40
+ "@noya-app/noya-icons": "0.0.1",
41
+ "@noya-app/noya-keymap": "0.0.3"
46
42
  },
47
43
  "devDependencies": {
44
+ "@types/react": "*",
45
+ "@types/react-dom": "*",
48
46
  "@types/react-virtualized": "^9.21.21",
49
47
  "@types/react-window": "^1.8.5",
50
48
  "@types/styled-components": "5.1.26"
@@ -52,5 +50,9 @@
52
50
  "peerDependencies": {
53
51
  "react": "*",
54
52
  "react-dom": "*"
53
+ },
54
+ "scripts": {
55
+ "build": "tsup src/index.tsx --format cjs,esm --dts --sourcemap",
56
+ "dev": "npm run build -- --watch"
55
57
  }
56
- }
58
+ }