Skip to content

Docs: Fix reference links and remove markdownlint-cli dependency #1566

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 4, 2018
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
5 changes: 4 additions & 1 deletion .markdownlintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@
"MD026": {
"punctuation": ".,;:!"
},
"MD029": false
"MD029": false,
"MD033": {
"allowed_elements": ["br", "details", "summary"]
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"listr": "^0.14.2",
"listr-input": "^0.1.2",
"loop": "^3.0.6",
"markdownlint-cli": "^0.13.0",
"markdownlint": "^0.11.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.2",
"shelljs": "^0.8.3",
Expand Down Expand Up @@ -56,7 +56,7 @@
"clean:packages": "rimraf \"packages/!(connector-edge|extension-vscode)/{dist,node_modules,npm-shrinkwrap.json,package-lock.json,yarn.lock}\"",
"clean:root": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:md": "markdownlint *.md",
"lint:md": "node scripts/lint-markdown",
"lint:packages": "loop \"yarn lint\" --cwd packages --exclude configuration-development,configuration-progressive-web-apps,configuration-web-recommended",
"lint:scripts": "eslint scripts .travis --cache --ext js --ext ts --report-unused-disable-directives",
"pre-release": "npm run clean:packages && npm run build:scripts && npm run release -- --prerelease",
Expand Down
3 changes: 1 addition & 2 deletions packages/connector-chrome/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"eslint-plugin-typescript": "0.14.0",
"hint": "^4.1.0",
"lodash": "^4.17.11",
"markdownlint-cli": "^0.13.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
Expand Down Expand Up @@ -74,7 +73,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
3 changes: 1 addition & 2 deletions packages/connector-edge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-typescript": "0.14.0",
"hint": "^4.1.0",
"markdownlint-cli": "^0.13.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.2",
"typescript": "^3.1.6",
Expand Down Expand Up @@ -52,7 +51,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"preinstall": "node scripts/preinstall.js",
"test": "npm run test-only",
"test-only": "npm run build",
Expand Down
3 changes: 1 addition & 2 deletions packages/connector-jsdom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"eslint-plugin-typescript": "0.14.0",
"hint": "^4.1.0",
"lodash": "^4.17.11",
"markdownlint-cli": "^0.13.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
Expand Down Expand Up @@ -74,7 +73,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
3 changes: 1 addition & 2 deletions packages/connector-local/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"eslint-plugin-typescript": "0.14.0",
"hint": "^4.1.0",
"lodash": "^4.17.11",
"markdownlint-cli": "^0.13.0",
"mock-require": "^3.0.2",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
Expand Down Expand Up @@ -61,7 +60,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
3 changes: 1 addition & 2 deletions packages/create-hint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"handlebars": "^4.0.11",
"hint": "^4.1.0",
"inquirer": "^6.2.0",
"markdownlint-cli": "^0.13.0",
"mkdirp": "^0.5.1",
"npm-link-check": "^3.0.0",
"npm-run-all": "^4.1.5",
Expand Down Expand Up @@ -62,7 +61,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
11 changes: 6 additions & 5 deletions packages/create-hint/src/shared-templates/package.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
{{{dependencyVersion "cpx" "^1.5.0"}}},
{{{dependencyVersion "eslint" "^5.0.1"}}},
{{{dependencyVersion "eslint-plugin-markdown" "^1.0.0-beta.7"}}},
{{{dependencyVersion "eslint-plugin-typescript" "^0.12.0"}}},
{{{dependencyVersion "markdownlint-cli" "^0.10.0"}}},
{{{dependencyVersion "eslint-plugin-typescript" "^0.12.0"}}},{{#unless official}}
{{{dependencyVersion "markdownlint-cli" "^0.13.0"}}},{{/unless}}
{{{dependencyVersion "npm-link-check" "^2.0.0"}}},
{{{dependencyVersion "npm-run-all" "^4.1.2"}}},
{{{dependencyVersion "nyc" "^12.0.2"}}},
Expand Down Expand Up @@ -73,9 +73,10 @@
"build:ts": "tsc -b",
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",{{#if official}}
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",{{else}}
"lint:js": "eslint . --cache --ext js --ext md --ext ts --report-unused-disable-directives",{{/if}}
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "node ../../scripts/lint-markdown.js",{{else}}
"lint:js": "eslint . --cache --ext js --ext md --ext ts --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",{{/if}}
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"init": "npm install && npm run build",
Expand Down
3 changes: 1 addition & 2 deletions packages/create-hintrc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"handlebars": "^4.0.11",
"hint": "^4.1.0",
"inquirer": "^6.2.0",
"markdownlint-cli": "^0.13.0",
"mkdirp": "^0.5.1",
"npm-link-check": "^3.0.0",
"npm-run-all": "^4.1.5",
Expand Down Expand Up @@ -69,7 +68,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
3 changes: 1 addition & 2 deletions packages/create-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"handlebars": "^4.0.11",
"hint": "^4.1.0",
"inquirer": "^6.2.0",
"markdownlint-cli": "^0.13.0",
"mkdirp": "^0.5.1",
"npm-link-check": "^3.0.0",
"npm-run-all": "^4.1.5",
Expand Down Expand Up @@ -65,7 +64,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
11 changes: 6 additions & 5 deletions packages/create-parser/src/shared-templates/package.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
{{{dependencyVersion "eslint-plugin-typescript" "^0.12.0"}}},
{{{dependencyVersion "eventemitter2" "^5.0.1"}}},
{{{dependencyVersion "proxyquire" "2.0.0"}}},
{{{dependencyVersion "sinon" "^6.0.1"}}},
{{{dependencyVersion "markdownlint-cli" "^0.10.0"}}},
{{{dependencyVersion "sinon" "^6.0.1"}}},{{#unless official}}
{{{dependencyVersion "markdownlint-cli" "^0.13.0"}}},{{/unless}}
{{{dependencyVersion "npm-link-check" "^2.0.0"}}},
{{{dependencyVersion "npm-run-all" "^4.1.2"}}},
{{{dependencyVersion "nyc" "^12.0.2"}}},
Expand Down Expand Up @@ -74,9 +74,10 @@
"build:ts": "tsc -b",
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",{{#if official}}
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",{{else}}
"lint:js": "eslint . --cache --ext js --ext md --ext ts --report-unused-disable-directives",{{/if}}
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "node ../../scripts/lint-markdown.js",{{else}}
"lint:js": "eslint . --cache --ext js --ext md --ext ts --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",{{/if}}
"test": "npm run lint && npm run build && nyc ava",{{#if official}}
"test-only": "nyc ava",{{/if}}
"init": "npm install && npm run build",
Expand Down
3 changes: 1 addition & 2 deletions packages/extension-browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
"html-minifier": "^3.5.21",
"is-ci": "^1.2.1",
"lodash": "^4.17.11",
"markdownlint-cli": "^0.13.0",
"mock-require": "^3.0.2",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
Expand Down Expand Up @@ -95,7 +94,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"watch": "npm run build && npm-run-all --parallel -c watch:*",
Expand Down
3 changes: 1 addition & 2 deletions packages/extension-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
"eslint-plugin-markdown": "^1.0.0-rc.0",
"eslint-plugin-typescript": "0.14.0",
"hint": "^4.1.0",
"markdownlint-cli": "^0.13.0",
"npm-link-check": "^3.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
Expand Down Expand Up @@ -65,7 +64,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
Expand Down
3 changes: 1 addition & 2 deletions packages/formatter-codeframe/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"eslint-plugin-markdown": "^1.0.0-rc.0",
"eslint-plugin-typescript": "0.14.0",
"hint": "^4.1.0",
"markdownlint-cli": "^0.13.0",
"npm-link-check": "^3.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
Expand Down Expand Up @@ -63,7 +62,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
3 changes: 1 addition & 2 deletions packages/formatter-excel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
"eslint-plugin-markdown": "^1.0.0-rc.0",
"eslint-plugin-typescript": "0.14.0",
"hint": "^4.1.0",
"markdownlint-cli": "^0.13.0",
"npm-link-check": "^3.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
Expand Down Expand Up @@ -62,7 +61,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
3 changes: 1 addition & 2 deletions packages/formatter-html/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"eslint-plugin-markdown": "^1.0.0-rc.0",
"eslint-plugin-typescript": "0.14.0",
"hint": "^4.1.0",
"markdownlint-cli": "^0.13.0",
"npm-link-check": "^3.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
Expand Down Expand Up @@ -67,7 +66,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
3 changes: 1 addition & 2 deletions packages/formatter-json/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"eslint-plugin-markdown": "^1.0.0-rc.0",
"eslint-plugin-typescript": "0.14.0",
"hint": "^4.1.0",
"markdownlint-cli": "^0.13.0",
"npm-link-check": "^3.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
Expand Down Expand Up @@ -59,7 +58,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
3 changes: 1 addition & 2 deletions packages/formatter-stylish/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"eslint-plugin-markdown": "^1.0.0-rc.0",
"eslint-plugin-typescript": "0.14.0",
"hint": "^4.1.0",
"markdownlint-cli": "^0.13.0",
"npm-link-check": "^3.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
Expand Down Expand Up @@ -64,7 +63,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
3 changes: 1 addition & 2 deletions packages/formatter-summary/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"eslint-plugin-markdown": "^1.0.0-rc.0",
"eslint-plugin-typescript": "0.14.0",
"hint": "^4.1.0",
"markdownlint-cli": "^0.13.0",
"npm-link-check": "^3.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
Expand Down Expand Up @@ -63,7 +62,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
3 changes: 1 addition & 2 deletions packages/hint-amp-validator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
"eslint-plugin-markdown": "^1.0.0-rc.0",
"eslint-plugin-typescript": "0.14.0",
"hint": "^4.1.0",
"markdownlint-cli": "^0.13.0",
"npm-link-check": "^3.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
Expand Down Expand Up @@ -59,7 +58,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
3 changes: 1 addition & 2 deletions packages/hint-apple-touch-icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
"eslint-plugin-markdown": "^1.0.0-rc.0",
"eslint-plugin-typescript": "0.14.0",
"hint": "^4.1.0",
"markdownlint-cli": "^0.13.0",
"npm-link-check": "^3.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
Expand Down Expand Up @@ -60,7 +59,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
3 changes: 1 addition & 2 deletions packages/hint-axe/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
"eslint-plugin-markdown": "^1.0.0-rc.0",
"eslint-plugin-typescript": "0.14.0",
"hint": "^4.1.0",
"markdownlint-cli": "^0.13.0",
"npm-link-check": "^3.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
Expand Down Expand Up @@ -59,7 +58,7 @@
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives",
"lint:md": "markdownlint --ignore CHANGELOG.md *.md",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only",
Expand Down
Loading