@spectrum-web-components/icons-workflow 0.37.0 → 0.39.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.
Files changed (2) hide show
  1. package/bin/build.js +2 -4
  2. package/package.json +6 -6
package/bin/build.js CHANGED
@@ -11,7 +11,7 @@ governing permissions and limitations under the License.
11
11
  */
12
12
 
13
13
  import fs from 'fs';
14
- import { glob } from 'glob';
14
+ import fg from 'fast-glob';
15
15
  import path from 'path';
16
16
  import { load } from 'cheerio';
17
17
  import prettier from 'prettier';
@@ -38,9 +38,7 @@ OF ANY KIND, either express or implied. See the License for the specific languag
38
38
  governing permissions and limitations under the License.
39
39
  */`;
40
40
 
41
- const icons = (
42
- await glob(`${rootDir}/node_modules/${iconsPath}/**.svg`)
43
- ).sort();
41
+ const icons = (await fg(`${rootDir}/node_modules/${iconsPath}/**.svg`)).sort();
44
42
 
45
43
  if (!fs.existsSync(`${rootDir}packages/icons-workflow/src`)) {
46
44
  fs.mkdirSync(`${rootDir}packages/icons-workflow/src`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/icons-workflow",
3
- "version": "0.37.0",
3
+ "version": "0.39.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -44,16 +44,16 @@
44
44
  "lit-html"
45
45
  ],
46
46
  "dependencies": {
47
- "@spectrum-web-components/base": "^0.37.0",
48
- "@spectrum-web-components/icon": "^0.37.0"
47
+ "@spectrum-web-components/base": "^0.39.0",
48
+ "@spectrum-web-components/icon": "^0.39.0"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@adobe/spectrum-css-workflow-icons": "^1.5.4",
52
- "@spectrum-css/icon": "^3.0.50",
52
+ "@spectrum-css/icon": "4.0.1",
53
53
  "case": "^1.6.1",
54
54
  "cheerio": "^1.0.0-rc.2",
55
+ "fast-glob": "^3.2.12",
55
56
  "fs": "^0.0.1-security",
56
- "glob": "^10.3.0",
57
57
  "path": "^0.12.7",
58
58
  "prettier": "^2.7.1"
59
59
  },
@@ -63,5 +63,5 @@
63
63
  "./src/index.js",
64
64
  "./icons/*"
65
65
  ],
66
- "gitHead": "d771f62f0d8063070af43283bb0fd5e3400bad06"
66
+ "gitHead": "2acc8390ef0ac6cc940958d4da705c9859155c0d"
67
67
  }