@rendr-view/card 1.0.1 → 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.
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +8 -0
- package/package.json +10 -10
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @rendr-view/card@1.0.
|
|
3
|
+
> @rendr-view/card@1.0.2 build /Users/simondavies/Projects/rendr-view/packages/card
|
|
4
4
|
> vite build
|
|
5
5
|
|
|
6
6
|
[33mThe CJS build of Vite's Node API is deprecated. See https://vite.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated for more details.[39m
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
[2K[1Grendering chunks (1)...[2K[1G[32m
|
|
10
10
|
[36m[vite:dts][32m Start generate declaration files...[39m
|
|
11
11
|
[2K[1Gcomputing gzip size (0)...[2K[1Gcomputing gzip size (1)...[2K[1G[2mdist/[22m[36mindex.mjs [39m[1m[2m21.73 kB[22m[1m[22m[2m │ gzip: 4.16 kB[22m[2m │ map: 50.80 kB[22m
|
|
12
|
-
[32m[36m[vite:dts][32m Declaration files built in
|
|
12
|
+
[32m[36m[vite:dts][32m Declaration files built in 1741ms.
|
|
13
13
|
[39m
|
|
14
14
|
[2K[1GEntry 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
|
[2K[1Grendering chunks (1)...[2K[1G[2K[1Gcomputing gzip size (1)...[2K[1G[2mdist/[22m[36mindex.js [39m[1m[2m15.39 kB[22m[1m[22m[2m │ gzip: 3.64 kB[22m[2m │ map: 48.79 kB[22m
|
|
16
|
-
[32m✓ built in 1.
|
|
16
|
+
[32m✓ built in 1.90s[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
3
11
|
## 1.0.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rendr-view/card",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,15 +8,9 @@
|
|
|
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
|
-
"
|
|
19
|
-
"
|
|
12
|
+
"clsx": "^1.1.1",
|
|
13
|
+
"@rendr-view/with-clxn": "1.0.2"
|
|
20
14
|
},
|
|
21
15
|
"engines": {
|
|
22
16
|
"node": ">=20.11.0"
|
|
@@ -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
|
+
}
|