@carbon/charts-svelte 0.54.5 → 0.54.6
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 +8 -0
- package/README.md +5 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.54.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.5...v0.54.6) (2022-01-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts-svelte
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.54.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.4...v0.54.5) (2022-01-11)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @carbon/charts-svelte
|
package/README.md
CHANGED
|
@@ -113,8 +113,10 @@ No additional configuration should be necessary.
|
|
|
113
113
|
|
|
114
114
|
### Rollup
|
|
115
115
|
|
|
116
|
-
|
|
117
|
-
|
|
116
|
+
Enable `inlineDynamicImports` in your `rollup.config.js` to avoid the
|
|
117
|
+
`this has been rewritten to undefined` error message.
|
|
118
|
+
|
|
119
|
+
If you encounter `ReferenceError: process is not defined`, install
|
|
118
120
|
[@rollup/plugin-replace](https://github.com/rollup/plugins/tree/master/packages/replace)
|
|
119
121
|
and add it to `plugins` in `rollup.config.js`.
|
|
120
122
|
|
|
@@ -124,6 +126,7 @@ import replace from '@rollup/plugin-replace';
|
|
|
124
126
|
|
|
125
127
|
export default {
|
|
126
128
|
// ...
|
|
129
|
+
inlineDynamicImports: true,
|
|
127
130
|
plugins: [
|
|
128
131
|
replace({
|
|
129
132
|
preventAssignment: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/charts-svelte",
|
|
3
|
-
"version": "0.54.
|
|
3
|
+
"version": "0.54.6",
|
|
4
4
|
"description": "Carbon charting components for Svelte",
|
|
5
5
|
"main": "./bundle.js",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
},
|
|
51
51
|
"homepage": "https://github.com/carbon-design-system/carbon-charts#readme",
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@carbon/charts": "^0.54.
|
|
53
|
+
"@carbon/charts": "^0.54.6",
|
|
54
54
|
"@carbon/telemetry": "0.0.0-alpha.6"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|