weboptimizer 2.0.1489 → 2.0.1490

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.
Files changed (2) hide show
  1. package/eslint.config.mjs +1 -1
  2. package/package.json +3 -23
package/eslint.config.mjs CHANGED
@@ -55,7 +55,7 @@ export default [js.configs.recommended, ...typescript.configs.recommended, jsdoc
55
55
  },
56
56
  sourceType: 'module'
57
57
  },
58
- ignores: ['**/exclude/*', '*.compiled.*', '*.d.ts', '**/*.d.ts', '*.js', '**/*.js'],
58
+ ignores: ['*.compiled.*', '*.js', '**/*.js', '**/.git/*', '**/.cache/*', '**/.config/*', '**/.npm/*', '**/log/*', '**/node_modules/*', '**/backup/*', '**/exclude/*', '**/plugins/*', '*.d.ts', '**/*.d.ts'],
59
59
  plugins: {
60
60
  jsdoc
61
61
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weboptimizer",
3
- "version": "2.0.1489",
3
+ "version": "2.0.1490",
4
4
  "description": "A generic web optimizer, (module) bundler and development environment.",
5
5
  "keywords": [
6
6
  "webpack",
@@ -100,7 +100,7 @@
100
100
  "babel-loader": "^9.1.3",
101
101
  "babel-plugin-transform-modern-regexp": "^0.0.6",
102
102
  "babel-preset-minify": "^0.5.2",
103
- "clientnode": "3.0.1164",
103
+ "clientnode": "3.0.1166",
104
104
  "ejs": "^3.1.10",
105
105
  "exports-loader": "^5.0.0",
106
106
  "extract-loader": "^5.1.0",
@@ -134,7 +134,7 @@
134
134
  "@typescript-eslint/parser": "^7.16.1",
135
135
  "css-loader": "^7.1.2",
136
136
  "cssnano": "^7.0.4",
137
- "documentation-website": "^1.0.328",
137
+ "documentation-website": "^1.0.329",
138
138
  "eslint": "^9.7.0",
139
139
  "eslint-config-google": "^0.14.0",
140
140
  "eslint-plugin-jsdoc": "^48.7.0",
@@ -479,26 +479,6 @@
479
479
  {
480
480
  "__evaluate__": "`'${self.path.apiDocumentation}'`"
481
481
  },
482
- "--ignore-pattern",
483
- "'**/.git/*'",
484
- "--ignore-pattern",
485
- "'**/.cache/*'",
486
- "--ignore-pattern",
487
- "'**/.config/*'",
488
- "--ignore-pattern",
489
- "'**/.npm/*'",
490
- "--ignore-pattern",
491
- "'**/log/*'",
492
- "--ignore-pattern",
493
- "'**/node_modules/*'",
494
- "--ignore-pattern",
495
- "'**/backup/*'",
496
- "--ignore-pattern",
497
- "'**/exclude/*'",
498
- "--ignore-pattern",
499
- "'**/plugins/*'",
500
- "--ignore-pattern",
501
- "'*.d.ts'",
502
482
  {
503
483
  "__evaluate__": "filesystem.isFileSync(path.resolve(currentPath, 'tsconfig.json')) ? '--parser-options=project:tsconfig.json' : ''"
504
484
  },