@naturalcycles/dev-lib 13.28.3 → 13.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -168,6 +168,7 @@ module.exports = {
168
168
  ],
169
169
  'id-match': 2,
170
170
  'import/order': 2,
171
+ 'import/no-anonymous-default-export': 2,
171
172
  // 'import/namespace': 0, // issues with e.g globby
172
173
  // 'import/no-unresolved': 0, // breaks for type-aliases, e.g '@/store'
173
174
  // 'import/no-duplicates': 0,
@@ -17,7 +17,7 @@ function runPrettier() {
17
17
  // If there's no `prettier.config.js` in target project - pass `./cfg/prettier.config.js`
18
18
  const prettierConfigPath = [`./prettier.config.js`].find(f => fs.existsSync(f)) || `${paths_cnst_1.cfgDir}/prettier.config.js`;
19
19
  // prettier --write 'src/**/*.{js,ts,css,scss,graphql}'
20
- const args = [`--write`, `--loglevel=warn`, `--config`, prettierConfigPath, ...prettierPaths];
20
+ const args = [`--write`, `--log-level=warn`, `--config`, prettierConfigPath, ...prettierPaths];
21
21
  (0, exec_util_1.execVoidCommandSync)('prettier', args);
22
22
  }
23
23
  exports.runPrettier = runPrettier;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
- "version": "13.28.3",
3
+ "version": "13.30.0",
4
4
  "scripts": {
5
5
  "prepare": "husky install",
6
6
  "tsn-debug": "tsn testScript.ts",
@@ -51,7 +51,7 @@
51
51
  "jest-junit": "^16.0.0",
52
52
  "lint-staged": "^13.0.0",
53
53
  "mitm": "^1.7.0",
54
- "prettier": "^2.0.4",
54
+ "prettier": "^3.0.0",
55
55
  "timekeeper": "^2.2.0",
56
56
  "ts-jest": "^29.0.0",
57
57
  "typescript": "^5.0.2",
@@ -60,7 +60,7 @@
60
60
  "devDependencies": {
61
61
  "jest": "^29.0.0",
62
62
  "stylelint": "^15.0.0",
63
- "stylelint-config-standard-scss": "^9.0.0"
63
+ "stylelint-config-standard-scss": "^10.0.0"
64
64
  },
65
65
  "files": [
66
66
  "dist",