@cypress-design/react-icon 1.5.1 → 2.0.0-next.0
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 +11 -0
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -2,7 +2,7 @@ yarn run v1.22.22
|
|
|
2
2
|
$ yarn build:codegen && yarn build:module && yarn build:types
|
|
3
3
|
$ node ./generate-icons.js
|
|
4
4
|
$ rollup -c ./rollup.config.mjs
|
|
5
|
-
(node:
|
|
5
|
+
(node:3292) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
|
|
6
6
|
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
7
7
|
[36m
|
|
8
8
|
[1m./index.ts[22m → [1m./dist/index.umd.js, ./dist/index.es.mjs[22m...[39m
|
|
@@ -12,6 +12,6 @@ $ rollup -c ./rollup.config.mjs
|
|
|
12
12
|
index.ts
|
|
13
13
|
|
|
14
14
|
Consumers of your bundle will have to use chunk.default to access their default export, which may not be what you want. Use `output.exports: "named"` to disable this warning.
|
|
15
|
-
[32mcreated [1m./dist/index.umd.js, ./dist/index.es.mjs[22m in [1m31.
|
|
15
|
+
[32mcreated [1m./dist/index.umd.js, ./dist/index.es.mjs[22m in [1m31.3s[22m[39m
|
|
16
16
|
$ tsc --project ./tsconfig.build.json
|
|
17
|
-
Done in 52.
|
|
17
|
+
Done in 52.81s.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @cypress-design/react-icon
|
|
2
2
|
|
|
3
|
+
## 2.0.0-next.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [#468](https://github.com/cypress-io/cypress-design/pull/468) [`3236662`](https://github.com/cypress-io/cypress-design/commit/3236662fdecd5abbceadce750098a75301d48f88) Thanks [@elevatebart](https://github.com/elevatebart)! - refactor: use tailwind components to manage specificity of styles
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`3236662`](https://github.com/cypress-io/cypress-design/commit/3236662fdecd5abbceadce750098a75301d48f88)]:
|
|
12
|
+
- @cypress-design/icon-registry@2.0.0-next.0
|
|
13
|
+
|
|
3
14
|
## 1.5.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cypress-design/react-icon",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-next.0",
|
|
4
4
|
"files": [
|
|
5
5
|
"*"
|
|
6
6
|
],
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"build:types": "tsc --project ./tsconfig.build.json"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@cypress-design/icon-registry": "^
|
|
24
|
+
"@cypress-design/icon-registry": "^2.0.0-next.0",
|
|
25
25
|
"clsx": "^2.1.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@cypress-design/rollup-plugin-tailwind-keep": "
|
|
28
|
+
"@cypress-design/rollup-plugin-tailwind-keep": "1.0.1-next.0",
|
|
29
29
|
"@types/lodash": "^4.17.4",
|
|
30
30
|
"lodash": "^4.17.21",
|
|
31
31
|
"dedent": "^1.5.3"
|