Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.14.1

- Upgrade globby to 11.1.0

## 1.14.0

- [add] `lasso` icon.
Expand Down
115 changes: 56 additions & 59 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mapbox/assembly",
"version": "1.14.0",
"version": "1.14.1",
"description": "A CSS framework",
"main": "index.js",
"files": [
Expand Down Expand Up @@ -48,7 +48,7 @@
"concat-with-sourcemaps": "^1.1.0",
"cp-file": "^6.0.0",
"csso": "^4.2.0",
"globby": "^10.0.0",
"globby": "^11.1.0",
"indent-string": "^3.1.0",
"mkdirp": "^0.5.1",
"p-queue": "^2.4.2",
Expand Down Expand Up @@ -127,4 +127,4 @@
"overrides": {
"micromatch": "4.0.8"
}
}
}
4 changes: 2 additions & 2 deletions src/md4-shim.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ try {
if (alg !== 'md4') return;
if (printed) return;
printed = true;
console.warn('MD4 is unsupported, replacing it with MD5');
console.warn('MD4 is unsupported, replacing it with SHA-256');
};
const createHash = crypto.createHash;
crypto.createHash = (alg, ...params) => {
print(alg);
return createHash(alg === 'md4' ? 'md5' : alg, ...params);
return createHash(alg === 'md4' ? 'sha256' : alg, ...params);
};
}
Loading