@sproutsocial/racine 26.10.0 → 26.12.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/CHANGELOG.md +13 -0
- package/package.json +10 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 26.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 76b2a02: Racine now uses exports field instead of main and module in package json file
|
|
8
|
+
|
|
9
|
+
## 26.11.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 25e3655: Upgraded dependencies:
|
|
14
|
+
- @sproutsocial/seeds-react-menu ^1.6.4 → ^1.6.5
|
|
15
|
+
|
|
3
16
|
## 26.10.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sproutsocial/racine",
|
|
3
|
-
"version": "26.
|
|
3
|
+
"version": "26.12.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18"
|
|
@@ -15,9 +15,14 @@
|
|
|
15
15
|
"bin": {
|
|
16
16
|
"racine-codemod": "bin/racine-codemod.js"
|
|
17
17
|
},
|
|
18
|
-
"main": "dist/index.js",
|
|
19
|
-
"module": "dist/esm/index.js",
|
|
20
18
|
"types": "dist/index.d.ts",
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"import": "./dist/esm/index.js",
|
|
23
|
+
"require": "./dist/index.js"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
21
26
|
"sideEffects": false,
|
|
22
27
|
"scripts": {
|
|
23
28
|
"build": "tsup --dts",
|
|
@@ -116,7 +121,7 @@
|
|
|
116
121
|
"@sproutsocial/seeds-motion": "^1.8.0",
|
|
117
122
|
"@sproutsocial/seeds-networkcolor": "^2.20.0",
|
|
118
123
|
"@sproutsocial/seeds-partner-logos": "^1.12.0",
|
|
119
|
-
"@sproutsocial/seeds-react-menu": "^1.6.
|
|
124
|
+
"@sproutsocial/seeds-react-menu": "^1.6.5",
|
|
120
125
|
"@sproutsocial/seeds-react-testing-library": "*",
|
|
121
126
|
"@sproutsocial/seeds-space": "^0.8.0",
|
|
122
127
|
"@sproutsocial/seeds-testing": "*",
|
|
@@ -135,7 +140,7 @@
|
|
|
135
140
|
"react": "^18.0.0",
|
|
136
141
|
"react-dom": "^18.0.0",
|
|
137
142
|
"styled-components": "^5.2.3",
|
|
138
|
-
"tsup": "^8.
|
|
143
|
+
"tsup": "^8.3.4",
|
|
139
144
|
"typescript": "^5.6.2"
|
|
140
145
|
},
|
|
141
146
|
"peerDependencies": {
|