Skip to content

Commit

Permalink
Merge branch 'master' into css-support
Browse files Browse the repository at this point in the history
  • Loading branch information
RJWadley committed May 30, 2023
2 parents 9869603 + 2b30e9e commit 34dadea
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
9 changes: 0 additions & 9 deletions .npmignore

This file was deleted.

2 changes: 1 addition & 1 deletion bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ if (argv.verbose >= 2) {
for (const feature of Object.values(features)) {
const out = [feature.caniuseData.title];
if (argv.verbose >= 3) {
out.push('\n', feature.missing.join(', '), '\n');
out.push('\n', feature.missing, '\n');
}
console.log(out.join(''));
}
Expand Down
9 changes: 9 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,15 @@
"tap": "^16.3.4",
"typescript": "^4.9.5"
},
"files": [
"bin",
"data",
"features",
"exports",
"lib",
"types",
"utils"
],
"scripts": {
"pretest": "eslint ./bin/**/*.js ./data/**/*.js ./lib/**/*.js ./test/**/*.js",
"test": "c8 tap --no-coverage",
Expand Down

0 comments on commit 34dadea

Please sign in to comment.