Skip to content

Commit

Permalink
- npm: Update devDeps.
Browse files Browse the repository at this point in the history
- npm: Add `lint` script
  • Loading branch information
brettz9 committed Jul 5, 2021
1 parent 4e0dc2c commit 27f694a
Show file tree
Hide file tree
Showing 3 changed files with 206 additions and 165 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 6.0.0 (2021-07-05)

### User-impacting

- Breaking enhancement: Create as true ESM module
- Breaking change: Utilize `.cjs` extension for UMD and CJS builds (very
old browsers might not support, but needed with the change given that
Expand All @@ -10,6 +12,11 @@
- Breaking change: Utilize `.js` extension instead of `.mjs` for now default
ESM builds

### Dev-impacting

- npm: Add `lint` script
- npm: Update devDeps.

## 5.1.0 (2021-06-24)

- Enhancement: support double-quoted bracket notation
Expand Down
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@
"@rollup/plugin-babel": "^5.3.0",
"c8": "^7.7.3",
"chai": "^4.3.4",
"core-js-bundle": "^3.15.1",
"core-js-bundle": "^3.15.2",
"coveradge": "^0.7.0",
"eslint": "^7.29.0",
"eslint-config-ash-nazg": "^29.17.1",
"eslint": "^7.30.0",
"eslint-config-ash-nazg": "^30.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-array-func": "^3.1.7",
"eslint-plugin-chai-expect": "^2.2.0",
Expand All @@ -76,28 +76,28 @@
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^35.4.0",
"eslint-plugin-jsdoc": "^35.4.1",
"eslint-plugin-markdown": "^2.2.0",
"eslint-plugin-no-unsanitized": "^3.1.5",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-radar": "^0.2.1",
"eslint-plugin-sonarjs": "^0.8.0-125",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-unicorn": "^33.0.1",
"eslint-plugin-unicorn": "^34.0.1",
"http-server": "^0.12.3",
"license-badger": "^0.19.0",
"mocha": "^9.0.1",
"mocha": "^9.0.2",
"mocha-badge-generator": "^0.9.0",
"mocha-multi-reporters": "^1.5.1",
"open-cli": "^7.0.0",
"remark-cli": "^9.0.0",
"remark-lint-code-block-style": "^2.0.1",
"remark-lint-ordered-list-marker-value": "^2.0.1",
"rollup": "2.52.2",
"rollup": "2.52.7",
"rollup-plugin-terser": "^7.0.2",
"typedoc": "^0.21.0",
"typescript": "^4.3.4"
"typedoc": "^0.21.2",
"typescript": "^4.3.5"
},
"keywords": [
"json",
Expand Down Expand Up @@ -145,6 +145,7 @@
"c8": "rm -Rf ./coverage && rm -Rf ./node_modules/.cache && c8 --all npm run mocha && npm run coverage-badge",
"rollup": "rollup -c",
"eslint": "eslint --ext js,md,html .",
"lint": "npm run eslint",
"test": "npm run eslint && npm run rollup && npm run c8 && npm run typescript",
"browser-test": "npm run eslint && npm run rollup && open-cli http://localhost:8084/test/ && npm start"
}
Expand Down
Loading

0 comments on commit 27f694a

Please sign in to comment.