Skip to content

Commit 4d2698f

Browse files
authored
Move Webpack build to the same Maven module from which it is invoked (#9823)
1 parent d0d0cc8 commit 4d2698f

File tree

147 files changed

+14
-14
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+14
-14
lines changed

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@
3939

4040
# Yarn
4141
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
42-
/war/.yarn/plugins/** binary
42+
/.yarn/plugins/** binary

.prettierignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ node/
88
.git
99

1010
# libraries / external deps / generated files
11-
war/src/main/js/plugin-setup-wizard/bootstrap-detached.js
11+
src/main/js/plugin-setup-wizard/bootstrap-detached.js
1212
war/src/main/webapp/scripts/yui
1313
war/src/main/webapp/jsbundles/
14-
war/src/main/scss/_bootstrap.scss
14+
src/main/scss/_bootstrap.scss
1515

1616
# test files that we don't need formatted
1717
test/src/test/resources

.stylelintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
22
extends: "stylelint-config-standard",
33
customSyntax: "postcss-scss",
4-
ignoreFiles: ["war/src/main/scss/_bootstrap.scss"],
4+
ignoreFiles: ["src/main/scss/_bootstrap.scss"],
55
rules: {
66
"no-descending-specificity": null,
77
"selector-class-pattern": "[a-z]",

eslint.config.cjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = [
1818
// External scripts
1919
".pnp.cjs",
2020
".pnp.loader.mjs",
21-
"war/src/main/js/plugin-setup-wizard/bootstrap-detached.js",
21+
"src/main/js/plugin-setup-wizard/bootstrap-detached.js",
2222
"war/src/main/webapp/scripts/yui/*",
2323
],
2424
},
@@ -91,8 +91,8 @@ module.exports = [
9191
{
9292
files: [
9393
"eslint.config.cjs",
94-
"war/postcss.config.js",
95-
"war/webpack.config.js",
94+
"postcss.config.js",
95+
"webpack.config.js",
9696
".stylelintrc.js",
9797
],
9898
languageOptions: {

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
},
1111
"private": true,
1212
"scripts": {
13-
"dev": "webpack --config war/webpack.config.js",
14-
"prod": "webpack --config war/webpack.config.js --mode=production",
13+
"dev": "webpack --config webpack.config.js",
14+
"prod": "webpack --config webpack.config.js --mode=production",
1515
"build": "yarn prod",
1616
"start": "yarn dev --watch",
1717
"lint:js": "eslint . && prettier --check .",
1818
"lint:js-ci": "eslint . -f checkstyle -o target/eslint-warnings.xml && prettier --check .",
19-
"lint:css": "stylelint war/src/main/scss",
20-
"lint:css-ci": "stylelint war/src/main/scss --custom-formatter stylelint-checkstyle-reporter -o target/stylelint-warnings.xml",
19+
"lint:css": "stylelint src/main/scss",
20+
"lint:css-ci": "stylelint src/main/scss --custom-formatter stylelint-checkstyle-reporter -o target/stylelint-warnings.xml",
2121
"lint:ci": "yarn lint:js-ci && yarn lint:css-ci",
22-
"lint:fix": "eslint --fix . && prettier --write . && stylelint war/src/main/scss --fix",
22+
"lint:fix": "eslint --fix . && prettier --write . && stylelint src/main/scss --fix",
2323
"lint": "yarn lint:js && yarn lint:css"
2424
},
2525
"devDependencies": {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

war/webpack.config.js webpack.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module.exports = (env, argv) => ({
5757
styles: [path.join(__dirname, "src/main/scss/styles.scss")],
5858
},
5959
output: {
60-
path: path.join(__dirname, "src/main/webapp/jsbundles"),
60+
path: path.join(__dirname, "war/src/main/webapp/jsbundles"),
6161
},
6262
devtool:
6363
argv.mode === "production"
@@ -89,7 +89,7 @@ module.exports = (env, argv) => ({
8989
options: {
9090
sourceMap: true,
9191
// ignore the URLS on the base styles as they are picked
92-
// from the src/main/webapp/images dir
92+
// from the war/src/main/webapp/images dir
9393
url: {
9494
filter: (url, resourcePath) => {
9595
return !resourcePath.includes("styles.scss");

0 commit comments

Comments
 (0)