Skip to content

Commit

Permalink
fix(deps): switch out from latest versions in dependencies
Browse files Browse the repository at this point in the history
fixes #464
  • Loading branch information
Wojciech Szydlak authored and jimmyandrade committed Jul 27, 2021
1 parent 4f7c3b7 commit 67efe05
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 97 deletions.
158 changes: 79 additions & 79 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@
"testu": "npm test -- -u"
},
"dependencies": {
"deepmerge": "latest",
"globby": "latest",
"meow": "9.x",
"nunjucks": "latest",
"p-limit": "latest",
"parse-json": "latest",
"resolve-from": "latest",
"svg2ttf": "latest",
"svgicons2svgfont": "10.0.1",
"ttf2eot": "latest",
"ttf2woff": "latest",
"deepmerge": "^4.2.2",
"globby": "^11.0.0",
"meow": "^9.0.0",
"nunjucks": "^3.2.3",
"p-limit": "^3.1.0",
"parse-json": "^5.2.0",
"resolve-from": "^5.0.0",
"svg2ttf": "^6.0.2",
"svgicons2svgfont": "^10.0.3",
"ttf2eot": "^2.0.0",
"ttf2woff": "^2.0.2",
"wawoff2": "^2.0.0",
"xml2js": "latest"
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/eslint-plugin": "latest",
Expand Down
12 changes: 6 additions & 6 deletions src/standalone/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ describe("standalone", () => {
update(result.woff2).
digest("hex");

expect(svgHash).toBe("5babeea3094bba0b5e2001390b0811fd");
expect(ttfHash).toBe("c78d2714960175fdf8eaebd44b4159e9");
expect(eotHash).toBe("024ccffe146cfdbcc501241516479f16");
expect(woffHash).toBe("6a11601283f57dd7d016ac91bc33179a");
expect(woff2Hash).toBe("23c6010d69f43c96aa9c6bed0f5529bb");
expect(svgHash).toBe("1154313a3843c5f5ec70890715e8a527");
expect(ttfHash).toBe("a78de3c54fa46d77540c2c96c4194f16");
expect(eotHash).toBe("90ed04c53c7534b2e66979f6c0a94afe");
expect(woffHash).toBe("20d0a901f75c638e7be9df714a93d5a0");
expect(woff2Hash).toBe("60fe7d6d658fef07b9e8af362e4b8f36");
});

it("should generate only `svg`, `ttf` and `eot` fonts", async () => {
Expand Down Expand Up @@ -438,7 +438,7 @@ describe("standalone", () => {
return standalone({
files: `${fixturesGlob}/svg-icons/**/*`,
}).then((result) => {
expect(result.hash).toBe("5babeea3094bba0b5e2001390b0811fd");
expect(result.hash).toBe("1154313a3843c5f5ec70890715e8a527");

return result;
});
Expand Down

0 comments on commit 67efe05

Please sign in to comment.