@sproutsocial/seeds-dataviz 0.6.3 → 0.7.1

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/seeds-dataviz.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sproutsocial/seeds-dataviz",
3
- "version": "0.6.3",
3
+ "version": "0.7.1",
4
4
  "description": "Seeds Data Visualization Tokens",
5
5
  "main": "seeds-dataviz.js",
6
6
  "types": "seeds-dataviz.d.ts",
@@ -15,12 +15,12 @@
15
15
  "author": "Sprout Social, Inc.",
16
16
  "license": "MIT",
17
17
  "scripts": {
18
- "clean": "rm -rf node_modules"
18
+ "clean:modules": "rm -rf node_modules"
19
19
  },
20
20
  "dependencies": {
21
- "@sproutsocial/seeds-color": "*"
21
+ "@sproutsocial/seeds-color": "^2.2.0"
22
22
  },
23
23
  "engines": {
24
- "node": "^14.15.0 || >=16.0.0"
24
+ "node": "^20.12.2"
25
25
  }
26
26
  }
package/seeds-dataviz.js CHANGED
@@ -1,6 +1,6 @@
1
- 'use strict';
1
+ "use strict";
2
2
 
3
- var seedsColors = require('@sproutsocial/seeds-color');
3
+ var seedsColors = require("@sproutsocial/seeds-color");
4
4
  var COLOR_TEAL_500 = seedsColors.COLOR_TEAL_500;
5
5
  var COLOR_PURPLE_700 = seedsColors.COLOR_PURPLE_700;
6
6
  var COLOR_PINK_700 = seedsColors.COLOR_PINK_700;