@lightscale/webpack-config 1.0.5 → 1.1.1
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/index.js +11 -48
- package/package.json +15 -9
package/index.js
CHANGED
|
@@ -44,51 +44,6 @@ const postCssConfig = {
|
|
|
44
44
|
]
|
|
45
45
|
};
|
|
46
46
|
|
|
47
|
-
const esLintConfig = {
|
|
48
|
-
'root': true,
|
|
49
|
-
'extends': [
|
|
50
|
-
'eslint:recommended'
|
|
51
|
-
],
|
|
52
|
-
'globals': {
|
|
53
|
-
'wp': true,
|
|
54
|
-
},
|
|
55
|
-
'env': {
|
|
56
|
-
'node': true,
|
|
57
|
-
'es6': true,
|
|
58
|
-
'amd': true,
|
|
59
|
-
'browser': true,
|
|
60
|
-
'jquery': true,
|
|
61
|
-
},
|
|
62
|
-
'parser': '@babel/eslint-parser',
|
|
63
|
-
'parserOptions': {
|
|
64
|
-
'ecmaFeatures': {
|
|
65
|
-
'globalReturn': true,
|
|
66
|
-
'generators': false,
|
|
67
|
-
'objectLiteralDuplicateProperties': false,
|
|
68
|
-
'experimentalObjectRestSpread': true,
|
|
69
|
-
},
|
|
70
|
-
'ecmaVersion': 2017,
|
|
71
|
-
'sourceType': 'module',
|
|
72
|
-
'requireConfigFile': false,
|
|
73
|
-
},
|
|
74
|
-
'plugins': [
|
|
75
|
-
|
|
76
|
-
],
|
|
77
|
-
'settings': {
|
|
78
|
-
'import/core-modules': [],
|
|
79
|
-
'import/ignore': [
|
|
80
|
-
'node_modules',
|
|
81
|
-
'\\.(coffee|scss|css|less|hbs|svg|json)$',
|
|
82
|
-
]
|
|
83
|
-
},
|
|
84
|
-
'rules': {
|
|
85
|
-
'no-console': 0,
|
|
86
|
-
'quotes': ['error', 'single'],
|
|
87
|
-
'semi': ['warn', 'always'],
|
|
88
|
-
'comma-dangle': 0,
|
|
89
|
-
},
|
|
90
|
-
};
|
|
91
|
-
|
|
92
47
|
const styleLintConfig = {
|
|
93
48
|
'extends': 'stylelint-config-standard',
|
|
94
49
|
'plugins': ['stylelint-scss'],
|
|
@@ -99,6 +54,7 @@ const styleLintConfig = {
|
|
|
99
54
|
'selector-class-pattern': null, // TODO: remove and fix
|
|
100
55
|
'at-rule-no-unknown': null,
|
|
101
56
|
'function-no-unknown': null,
|
|
57
|
+
'declaration-property-value-no-unknown': null,
|
|
102
58
|
'no-invalid-position-at-import-rule': [
|
|
103
59
|
true,
|
|
104
60
|
{
|
|
@@ -116,7 +72,12 @@ export const makeConfig = (env, argv, options) => {
|
|
|
116
72
|
const isProd = argv.mode === 'production',
|
|
117
73
|
isDev = argv.mode === 'development',
|
|
118
74
|
isWatch = typeof argv.watch !== 'undefined' && argv.watch === true,
|
|
119
|
-
{paths,
|
|
75
|
+
{paths,
|
|
76
|
+
entry,
|
|
77
|
+
plugins = [],
|
|
78
|
+
manifestCustomize = (e) => e,
|
|
79
|
+
sassOptions = {}
|
|
80
|
+
} = options;
|
|
120
81
|
|
|
121
82
|
return {
|
|
122
83
|
entry,
|
|
@@ -162,7 +123,6 @@ export const makeConfig = (env, argv, options) => {
|
|
|
162
123
|
config: styleLintConfig,
|
|
163
124
|
}),
|
|
164
125
|
new EsLintPlugin({
|
|
165
|
-
baseConfig: esLintConfig,
|
|
166
126
|
overrideConfig: {
|
|
167
127
|
rules: {
|
|
168
128
|
"no-console": isProd ? 2 : 1,
|
|
@@ -204,7 +164,10 @@ export const makeConfig = (env, argv, options) => {
|
|
|
204
164
|
postcssOptions: postCssConfig
|
|
205
165
|
}
|
|
206
166
|
},
|
|
207
|
-
|
|
167
|
+
{
|
|
168
|
+
loader: 'sass-loader',
|
|
169
|
+
options: sassOptions,
|
|
170
|
+
},
|
|
208
171
|
],
|
|
209
172
|
},
|
|
210
173
|
],
|
package/package.json
CHANGED
|
@@ -1,24 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lightscale/webpack-config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Basic webpack config with js babel, postcss, scss, svg",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"auther": "Sam Light",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"license": "MIT",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://git.lightscale.co.uk/lightscale-webpack-config.git"
|
|
12
|
+
},
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
9
16
|
"dependencies": {
|
|
10
17
|
"@babel/core": "^7.12.10",
|
|
11
|
-
"@babel/eslint-parser": "^7.16.0",
|
|
12
18
|
"@babel/preset-env": "^7.12.11",
|
|
13
19
|
"ajv": "^8.12.0",
|
|
14
20
|
"autoprefixer": "^10.4.0",
|
|
15
|
-
"babel-loader": "^
|
|
16
|
-
"babel-plugin-polyfill-corejs3": "^0.
|
|
21
|
+
"babel-loader": "^10.0.0",
|
|
22
|
+
"babel-plugin-polyfill-corejs3": "^0.12.0",
|
|
17
23
|
"clean-terminal-webpack-plugin": "^3.0.0",
|
|
18
24
|
"clean-webpack-plugin": "^4.0.0",
|
|
19
25
|
"css-loader": "^7.0.0",
|
|
20
26
|
"eslint": "^9.0.0",
|
|
21
|
-
"eslint-webpack-plugin": "^
|
|
27
|
+
"eslint-webpack-plugin": "^5.0.0",
|
|
22
28
|
"glob": "^11.0.0",
|
|
23
29
|
"mini-css-extract-plugin": "^2.4.2",
|
|
24
30
|
"postcss": "^8.4.5",
|
|
@@ -30,14 +36,14 @@
|
|
|
30
36
|
"style-loader": "^4.0.0",
|
|
31
37
|
"stylelint": "^16.0.0",
|
|
32
38
|
"stylelint-config-recommended-scss": "^14.0.0",
|
|
33
|
-
"stylelint-config-standard": "^
|
|
39
|
+
"stylelint-config-standard": "^37.0.0",
|
|
34
40
|
"stylelint-scss": "^6.0.0",
|
|
35
41
|
"stylelint-webpack-plugin": "^5.0.0",
|
|
36
|
-
"svg-chunk-webpack-plugin": "^
|
|
42
|
+
"svg-chunk-webpack-plugin": "^7.0.0",
|
|
37
43
|
"webpack": "^5.11.1",
|
|
38
44
|
"webpack-assets-manifest": "^5.0.6",
|
|
39
|
-
"webpack-cli": "^
|
|
45
|
+
"webpack-cli": "^6.0.0",
|
|
40
46
|
"webpack-notifier": "^1.12.0",
|
|
41
|
-
"webpackbar": "^
|
|
47
|
+
"webpackbar": "^7.0.0"
|
|
42
48
|
}
|
|
43
49
|
}
|