weboptimizer 2.0.1596 → 2.0.1597
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.
- package/eslint.config.mjs +3 -2
- package/package.json +2 -2
package/eslint.config.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import google from 'eslint-config-google';
|
|
|
5
5
|
import jsdoc from 'eslint-plugin-jsdoc';
|
|
6
6
|
import { readFile, stat } from 'fs/promises';
|
|
7
7
|
import globals from 'globals';
|
|
8
|
-
import { resolve } from 'path';
|
|
8
|
+
import { dirname, resolve } from 'path';
|
|
9
9
|
import { cwd } from 'process';
|
|
10
10
|
import typescript from 'typescript-eslint';
|
|
11
11
|
/**
|
|
@@ -63,7 +63,8 @@ export const config = typescript.config({
|
|
|
63
63
|
jsx: true
|
|
64
64
|
},
|
|
65
65
|
impliedStrict: true,
|
|
66
|
-
project: TSCONFIG_FILE_PATH
|
|
66
|
+
project: TSCONFIG_FILE_PATH,
|
|
67
|
+
tsconfigRootDir: dirname(TSCONFIG_FILE_PATH)
|
|
67
68
|
},
|
|
68
69
|
sourceType: 'module'
|
|
69
70
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "weboptimizer",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1597",
|
|
4
4
|
"description": "A generic web optimizer, (module) bundler and development environment.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"babel-loader": "^10.0.0",
|
|
99
99
|
"babel-plugin-transform-modern-regexp": "^0.0.6",
|
|
100
100
|
"babel-preset-minify": "^0.5.2",
|
|
101
|
-
"clientnode": "3.0.
|
|
101
|
+
"clientnode": "3.0.1301",
|
|
102
102
|
"ejs": "^3.1.10",
|
|
103
103
|
"exports-loader": "^5.0.0",
|
|
104
104
|
"extract-loader": "^5.1.0",
|