Skip to content

Commit 1fd5199

Browse files
[email protected] - More package updates (#2521)
* [email protected] - More package updates * Package updates
1 parent 71dc3a7 commit 1fd5199

File tree

7 files changed

+51
-36
lines changed

7 files changed

+51
-36
lines changed

packages/tools/f-vue-icons/CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
55

6+
## v3.14.1
7+
_April 30, 2024_
8+
9+
### Removed
10+
- Unused `marked` dependency.
11+
12+
613
## v3.14.0
714

815
_March 13, 2024_
@@ -12,7 +19,6 @@ _March 13, 2024_
1219
- node engines in `package.json` to include all versions above 14
1320
- Replaced vulnerable `bili` package with rollup for generating icons
1421
- bumped vulnerable `marked` package (snyk vulnerability)
15-
-
1622

1723
## v3.13.1
1824

packages/tools/f-vue-icons/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@justeat/f-vue-icons",
3-
"version": "3.14.0",
3+
"version": "3.14.1",
44
"main": "dist/index.cjs",
55
"maxBundleSize": "155kB",
66
"module": "esm/index.mjs",
@@ -60,7 +60,6 @@
6060
"@rollup/plugin-node-resolve": "15.1.0",
6161
"fs-extra": "9.0.1",
6262
"lodash.kebabcase": "4.1.1",
63-
"marked": "2.0.0",
6463
"pascal-case": "3.1.2",
6564
"prismjs": "1.27.0",
6665
"rollup": "3.20.2"

packages/tools/fozzie/CHANGELOG.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,17 @@
33
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
55

6-
## v11.2.1
7-
8-
_April 10, 2024_
6+
## v11.2.2
7+
_April 30, 2024_
98

109
### Changed
10+
- Update `glob` to v9.
11+
1112

13+
## v11.2.1
14+
_April 26, 2024_
15+
16+
### Changed
1217
- Update `jest` to latest version.
1318

1419

packages/tools/fozzie/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@justeat/fozzie",
33
"title": "Fozzie – Just Eat UI Web Framework",
44
"description": "UI Web Framework for the Just Eat Global Platform",
5-
"version": "11.2.1",
5+
"version": "11.2.2",
66
"main": "dist/js/index.js",
77
"files": [
88
"dist/js",
@@ -56,7 +56,7 @@
5656
"eslint": "8.26.0",
5757
"eslint-plugin-import": "2.26.0",
5858
"fontfaceobserver": "2.3.0",
59-
"glob": "8.0.3",
59+
"glob": "9.0.0",
6060
"jest": "29.7.0",
6161
"jest-environment-jsdom": "29.7.0",
6262
"postcss": "8.4.31",

packages/tools/fozzie/src/test/scss/scss-setup.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88

99
const path = require('path');
1010
const sassTrue = require('sass-true');
11-
const glob = require('glob');
11+
const { globSync } = require('glob');
1212

1313
describe('SCSS', () => {
1414
// All Scss unit tests should follow this naming convention
1515
const testFileGlob = '**/*.spec.scss';
1616
const testFilePathGlob = path.resolve(process.cwd(), testFileGlob);
1717

1818
// Find all of the Scss files that end in `*.spec.scss` in any directory of this project
19-
const scssTestFiles = glob.sync(testFilePathGlob);
19+
const scssTestFiles = globSync(testFilePathGlob);
2020

2121
// Run True on every file found with the describe and it methods provided
2222
scssTestFiles.forEach(file => sassTrue.runSass({ file, includePaths: ['node_modules'] }, { describe, it }));

packages/tools/fozzie/src/utilities/getSubdirectories.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
const glob = require('glob');
1+
const { globSync } = require('glob');
22

33
/**
44
* Get all subdirectory paths for a given source
55
* @param {string} src - The source to search from for subdirectories
66
* @returns {string[]} - An array of all subdirectory paths
77
*/
8-
const getAllSubdirectoryPaths = src => glob.sync(`${src}/**/`);
8+
const getAllSubdirectoryPaths = src => globSync(`${src}/**/`);
99

1010
module.exports = {
1111
getAllSubdirectoryPaths

yarn.lock

+29-24
Original file line numberDiff line numberDiff line change
@@ -4537,7 +4537,6 @@ __metadata:
45374537
"@rollup/plugin-node-resolve": 15.1.0
45384538
fs-extra: 9.0.1
45394539
lodash.kebabcase: 4.1.1
4540-
marked: 2.0.0
45414540
pascal-case: 3.1.2
45424541
prismjs: 1.27.0
45434542
rollup: 3.20.2
@@ -4586,7 +4585,7 @@ __metadata:
45864585
eslint: 8.26.0
45874586
eslint-plugin-import: 2.26.0
45884587
fontfaceobserver: 2.3.0
4589-
glob: 8.0.3
4588+
glob: 9.0.0
45904589
include-media: 2.0.0
45914590
jest: 29.7.0
45924591
jest-environment-jsdom: 29.7.0
@@ -18284,29 +18283,28 @@ __metadata:
1828418283
languageName: node
1828518284
linkType: hard
1828618285

18287-
"glob@npm:8.0.3":
18288-
version: 8.0.3
18289-
resolution: "glob@npm:8.0.3"
18286+
"glob@npm:8.1.0, glob@npm:^8.0.3":
18287+
version: 8.1.0
18288+
resolution: "glob@npm:8.1.0"
1829018289
dependencies:
1829118290
fs.realpath: ^1.0.0
1829218291
inflight: ^1.0.4
1829318292
inherits: 2
1829418293
minimatch: ^5.0.1
1829518294
once: ^1.3.0
18296-
checksum: 50bcdea19d8e79d8de5f460b1939ffc2b3299eac28deb502093fdca22a78efebc03e66bf54f0abc3d3d07d8134d19a32850288b7440d77e072aa55f9d33b18c5
18295+
checksum: 92fbea3221a7d12075f26f0227abac435de868dd0736a17170663783296d0dd8d3d532a5672b4488a439bf5d7fb85cdd07c11185d6cd39184f0385cbdfb86a47
1829718296
languageName: node
1829818297
linkType: hard
1829918298

18300-
"glob@npm:8.1.0, glob@npm:^8.0.3":
18301-
version: 8.1.0
18302-
resolution: "glob@npm:8.1.0"
18299+
"glob@npm:9.0.0":
18300+
version: 9.0.0
18301+
resolution: "glob@npm:9.0.0"
1830318302
dependencies:
1830418303
fs.realpath: ^1.0.0
18305-
inflight: ^1.0.4
18306-
inherits: 2
18307-
minimatch: ^5.0.1
18308-
once: ^1.3.0
18309-
checksum: 92fbea3221a7d12075f26f0227abac435de868dd0736a17170663783296d0dd8d3d532a5672b4488a439bf5d7fb85cdd07c11185d6cd39184f0385cbdfb86a47
18304+
minimatch: ^7.3.0
18305+
minipass: ^4.2.4
18306+
path-scurry: ^1.5.0
18307+
checksum: a26e06d253d19ee6889a6dc67e0a456d23b13ae197d1cd945961bbba5166ce9bd46db0bc49324a6da9003217a8fe8b2052dbc35c0e97dbba61db67c87a8d03f7
1831018308
languageName: node
1831118309
linkType: hard
1831218310

@@ -24000,15 +23998,6 @@ __metadata:
2400023998
languageName: node
2400123999
linkType: hard
2400224000

24003-
"marked@npm:2.0.0":
24004-
version: 2.0.0
24005-
resolution: "marked@npm:2.0.0"
24006-
bin:
24007-
marked: bin/marked
24008-
checksum: 80eadb93340cd043b69c1c7ce95836f0f2cb0355121dbd4b4189b6efb7559884e719eaf5cd9300ca51679f54a4f3d8388bc8e7ca0fd0da76619c4f238e72e1ea
24009-
languageName: node
24010-
linkType: hard
24011-
2401224001
"marky@npm:^1.2.2":
2401324002
version: 1.2.5
2401424003
resolution: "marky@npm:1.2.5"
@@ -24537,6 +24526,15 @@ __metadata:
2453724526
languageName: node
2453824527
linkType: hard
2453924528

24529+
"minimatch@npm:^7.3.0":
24530+
version: 7.4.6
24531+
resolution: "minimatch@npm:7.4.6"
24532+
dependencies:
24533+
brace-expansion: ^2.0.1
24534+
checksum: 1a6c8d22618df9d2a88aabeef1de5622eb7b558e9f8010be791cb6b0fa6e102d39b11c28d75b855a1e377b12edc7db8ff12a99c20353441caa6a05e78deb5da9
24535+
languageName: node
24536+
linkType: hard
24537+
2454024538
"minimatch@npm:^9.0.1, minimatch@npm:^9.0.3":
2454124539
version: 9.0.4
2454224540
resolution: "minimatch@npm:9.0.4"
@@ -24669,6 +24667,13 @@ __metadata:
2466924667
languageName: node
2467024668
linkType: hard
2467124669

24670+
"minipass@npm:^4.2.4":
24671+
version: 4.2.8
24672+
resolution: "minipass@npm:4.2.8"
24673+
checksum: 7f4914d5295a9a30807cae5227a37a926e6d910c03f315930fde52332cf0575dfbc20295318f91f0baf0e6bb11a6f668e30cde8027dea7a11b9d159867a3c830
24674+
languageName: node
24675+
linkType: hard
24676+
2467224677
"minipass@npm:^5.0.0":
2467324678
version: 5.0.0
2467424679
resolution: "minipass@npm:5.0.0"
@@ -26674,7 +26679,7 @@ __metadata:
2667426679
languageName: node
2667526680
linkType: hard
2667626681

26677-
"path-scurry@npm:^1.10.2":
26682+
"path-scurry@npm:^1.10.2, path-scurry@npm:^1.5.0":
2667826683
version: 1.10.2
2667926684
resolution: "path-scurry@npm:1.10.2"
2668026685
dependencies:

0 commit comments

Comments
 (0)