@rendr-view/card 1.0.0 → 1.0.2

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,6 +1,6 @@
1
1
 
2
2
  
3
- > @rendr-view/card@1.0.0 build /Users/simondavies/Projects/rendr-view/packages/card
3
+ > @rendr-view/card@1.0.2 build /Users/simondavies/Projects/rendr-view/packages/card
4
4
  > vite build
5
5
 
6
6
  The CJS build of Vite's Node API is deprecated. See https://vite.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated for more details.
@@ -9,8 +9,8 @@
9
9
  rendering chunks (1)...
10
10
  [vite:dts] Start generate declaration files...
11
11
  computing gzip size (0)...computing gzip size (1)...dist/index.mjs 21.73 kB │ gzip: 4.16 kB │ map: 50.80 kB
12
- [vite:dts] Declaration files built in 2015ms.
12
+ [vite:dts] Declaration files built in 1741ms.
13
13
  
14
14
  Entry module "src/index.ts" is using named and default exports together. Consumers of your bundle will have to use `chunk.default` to access the default export, which may not be what you want. Use `output.exports: "named"` to disable this warning.
15
15
  rendering chunks (1)...computing gzip size (1)...dist/index.js 15.39 kB │ gzip: 3.64 kB │ map: 48.79 kB
16
- ✓ built in 2.26s
16
+ ✓ built in 1.90s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @rendr-view/card
2
2
 
3
+ ## 1.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix workspace dependency publishing issue and update Node engine requirement to >=20.11.0. This release includes a pre-flight verification step to ensure correct publishing.
8
+ - Updated dependencies
9
+ - @rendr-view/with-clxn@1.0.2
10
+
11
+ ## 1.0.1
12
+
13
+ ### Patch Changes
14
+
15
+ - Resolve workspace dependency publishing issue and update Node engine requirement to >=20.11.0.
16
+ - Updated dependencies
17
+ - @rendr-view/with-clxn@1.0.1
18
+
3
19
  ## 1.0.0
4
20
 
5
21
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rendr-view/card",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "license": "MIT",
@@ -8,18 +8,12 @@
8
8
  "publishConfig": {
9
9
  "access": "public"
10
10
  },
11
- "scripts": {
12
- "build": "vite build",
13
- "test": "vitest run",
14
- "lint": "eslint .",
15
- "clean": "rm -rf dist node_modules"
16
- },
17
11
  "dependencies": {
18
- "@rendr-view/with-clxn": "workspace:*",
19
- "clsx": "^1.1.1"
12
+ "clsx": "^1.1.1",
13
+ "@rendr-view/with-clxn": "1.0.2"
20
14
  },
21
15
  "engines": {
22
- "node": ">=22"
16
+ "node": ">=20.11.0"
23
17
  },
24
18
  "types": "./dist/index.d.ts",
25
19
  "exports": {
@@ -34,5 +28,11 @@
34
28
  "type": "git",
35
29
  "url": "git+https://github.com/fiveid/rendr-view.git",
36
30
  "directory": "packages/card"
31
+ },
32
+ "scripts": {
33
+ "build": "vite build",
34
+ "test": "vitest run",
35
+ "lint": "eslint .",
36
+ "clean": "rm -rf dist node_modules"
37
37
  }
38
- }
38
+ }