Skip to content

Commit

Permalink
Bump Npm packages
Browse files Browse the repository at this point in the history
  • Loading branch information
frenic committed Mar 5, 2019
1 parent 0f57f01 commit 239bd93
Show file tree
Hide file tree
Showing 3 changed files with 3,923 additions and 4,249 deletions.
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,25 @@
"license": "MIT",
"devDependencies": {
"@types/chokidar": "^1.7.5",
"@types/jest": "^23.3.5",
"@types/jsdom": "^12.2.0",
"@types/node": "^10.11.7",
"@types/prettier": "^1.13.2",
"chalk": "^2.4.1",
"chokidar": "^2.0.4",
"fast-glob": "^2.2.4",
"flow-bin": "^0.83.0",
"jest": "^23.6.0",
"jsdom": "^12.2.0",
"@types/jest": "^24.0.9",
"@types/jsdom": "^12.2.3",
"@types/node": "^11.10.4",
"@types/prettier": "^1.16.1",
"chalk": "^2.4.2",
"chokidar": "^2.1.2",
"fast-glob": "^2.2.6",
"flow-bin": "^0.94.0",
"jest": "^24.1.0",
"jsdom": "^13.2.0",
"mdn-browser-compat-data": "git+https://github.com/mdn/browser-compat-data.git#f9f1b8375fa922b2a30489f6c7ed69d62894a433",
"mdn-data": "git+https://github.com/mdn/data.git#9ec55b3a1f609f2e4dd5ec6603fe24e27c28e9a4",
"prettier": "^1.14.3",
"prettier": "^1.16.4",
"sync-request": "^6.0.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"turndown": "^5.0.1",
"typescript": "^3.1.3"
"ts-node": "^8.0.2",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"turndown": "^5.0.3",
"typescript": "~3.3.3"
},
"scripts": {
"update": "ts-node --files update.ts",
Expand Down
8 changes: 4 additions & 4 deletions src/comment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ export function composeCommentBlock(
return rows.length > 1
? '/**\n * ' + rows.join('\n * ') + '\n */'
: rows.length === 1
? '/** ' + rows[0] + ' */'
: null;
? '/** ' + rows[0] + ' */'
: null;
}

function getCompatRows(compatibilityData: MDN.CompatData) {
Expand Down Expand Up @@ -185,8 +185,8 @@ function supportVersion(supports: MDN.Support | MDN.Support[] | undefined): stri
(supportsPrefixed.prefix
? ` _-x-_`
: supportsPrefixed.alternative_name
? ` _(${supportsPrefixed.alternative_name})_`
: ''),
? ` _(${supportsPrefixed.alternative_name})_`
: ''),
);
}

Expand Down
Loading

0 comments on commit 239bd93

Please sign in to comment.