Skip to content

Commit 27f694a

Browse files
committed
- npm: Update devDeps.
- npm: Add `lint` script
1 parent 4e0dc2c commit 27f694a

File tree

3 files changed

+206
-165
lines changed

3 files changed

+206
-165
lines changed

CHANGES.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## 6.0.0 (2021-07-05)
44

5+
### User-impacting
6+
57
- Breaking enhancement: Create as true ESM module
68
- Breaking change: Utilize `.cjs` extension for UMD and CJS builds (very
79
old browsers might not support, but needed with the change given that
@@ -10,6 +12,11 @@
1012
- Breaking change: Utilize `.js` extension instead of `.mjs` for now default
1113
ESM builds
1214

15+
### Dev-impacting
16+
17+
- npm: Add `lint` script
18+
- npm: Update devDeps.
19+
1320
## 5.1.0 (2021-06-24)
1421

1522
- Enhancement: support double-quoted bracket notation

package.json

+11-10
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@
6464
"@rollup/plugin-babel": "^5.3.0",
6565
"c8": "^7.7.3",
6666
"chai": "^4.3.4",
67-
"core-js-bundle": "^3.15.1",
67+
"core-js-bundle": "^3.15.2",
6868
"coveradge": "^0.7.0",
69-
"eslint": "^7.29.0",
70-
"eslint-config-ash-nazg": "^29.17.1",
69+
"eslint": "^7.30.0",
70+
"eslint-config-ash-nazg": "^30.0.1",
7171
"eslint-config-standard": "^16.0.3",
7272
"eslint-plugin-array-func": "^3.1.7",
7373
"eslint-plugin-chai-expect": "^2.2.0",
@@ -76,28 +76,28 @@
7676
"eslint-plugin-eslint-comments": "^3.2.0",
7777
"eslint-plugin-html": "^6.1.2",
7878
"eslint-plugin-import": "^2.23.4",
79-
"eslint-plugin-jsdoc": "^35.4.0",
79+
"eslint-plugin-jsdoc": "^35.4.1",
8080
"eslint-plugin-markdown": "^2.2.0",
8181
"eslint-plugin-no-unsanitized": "^3.1.5",
8282
"eslint-plugin-no-use-extend-native": "^0.5.0",
8383
"eslint-plugin-node": "^11.1.0",
8484
"eslint-plugin-promise": "^5.1.0",
85-
"eslint-plugin-radar": "^0.2.1",
85+
"eslint-plugin-sonarjs": "^0.8.0-125",
8686
"eslint-plugin-standard": "^4.1.0",
87-
"eslint-plugin-unicorn": "^33.0.1",
87+
"eslint-plugin-unicorn": "^34.0.1",
8888
"http-server": "^0.12.3",
8989
"license-badger": "^0.19.0",
90-
"mocha": "^9.0.1",
90+
"mocha": "^9.0.2",
9191
"mocha-badge-generator": "^0.9.0",
9292
"mocha-multi-reporters": "^1.5.1",
9393
"open-cli": "^7.0.0",
9494
"remark-cli": "^9.0.0",
9595
"remark-lint-code-block-style": "^2.0.1",
9696
"remark-lint-ordered-list-marker-value": "^2.0.1",
97-
"rollup": "2.52.2",
97+
"rollup": "2.52.7",
9898
"rollup-plugin-terser": "^7.0.2",
99-
"typedoc": "^0.21.0",
100-
"typescript": "^4.3.4"
99+
"typedoc": "^0.21.2",
100+
"typescript": "^4.3.5"
101101
},
102102
"keywords": [
103103
"json",
@@ -145,6 +145,7 @@
145145
"c8": "rm -Rf ./coverage && rm -Rf ./node_modules/.cache && c8 --all npm run mocha && npm run coverage-badge",
146146
"rollup": "rollup -c",
147147
"eslint": "eslint --ext js,md,html .",
148+
"lint": "npm run eslint",
148149
"test": "npm run eslint && npm run rollup && npm run c8 && npm run typescript",
149150
"browser-test": "npm run eslint && npm run rollup && open-cli http://localhost:8084/test/ && npm start"
150151
}

0 commit comments

Comments
 (0)