-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DEP Upgrade frontend build stack #82
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
10 | ||
18 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"presets": [ | ||
"@babel/preset-env", | ||
"@babel/preset-react" | ||
] | ||
} |
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,9 +18,6 @@ | |
} | ||
|
||
.color-picker-field-popover { | ||
max-width: 380px; | ||
width: 380px; | ||
|
||
&__option { | ||
display: flex; | ||
padding: 4px; | ||
|
@@ -46,4 +43,9 @@ | |
align-self: center; | ||
margin-left: 12px; | ||
} | ||
|
||
.popover { | ||
max-width: 380px; | ||
width: 380px; | ||
} | ||
Comment on lines
+47
to
+50
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like whatever controls the underlying popover has changed its markup - this is now a div below the |
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,6 @@ | |
}, | ||
"extra": { | ||
"expose": [ | ||
"thirdparty/TinyMCE-FontAwesome-Plugin/fontawesome", | ||
"client/dist" | ||
] | ||
}, | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"name": "agency-extensions", | ||
"version": "1.0.0", | ||
"description": "Base module for the default CWP theme to add features", | ||
"scripts": { | ||
"build": "yarn && yarn lint && NODE_ENV=production webpack -p --bail --progress", | ||
"build": "yarn && yarn lint && rm -rf client/dist/* && NODE_ENV=production webpack --mode production --bail --progress", | ||
"dev": "NODE_ENV=development webpack --progress", | ||
"watch": "yarn && NODE_ENV=development webpack --watch --progress", | ||
"css": "WEBPACK_CHILD=css npm run build", | ||
"lint": "eslint client/src && sass-lint --verbose client/src/**/*.scss", | ||
|
@@ -17,24 +17,27 @@ | |
}, | ||
"author": "SilverStripe", | ||
"license": "BSD-3-Clause", | ||
"engines": { | ||
"node": "^18.x" | ||
}, | ||
"dependencies": { | ||
"classnames": "^2.2.5", | ||
"jquery": "^3.5.0", | ||
"classnames": "^2.3.2", | ||
"merge": "^2.1.1", | ||
"mime": "^1.4.1", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. mime isn't used |
||
"prop-types": "^15.6.2", | ||
"react": "^15.3.1", | ||
"react-dom": "^15.3.1", | ||
"reactstrap": "^6.5.0" | ||
"prop-types": "^15.8.1", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"reactstrap": "^8.9.0" | ||
}, | ||
"devDependencies": { | ||
"@silverstripe/eslint-config": "^0.0.5", | ||
"@silverstripe/webpack-config": "^1.2.0", | ||
"babel-jest": "^20.0.3", | ||
"bootstrap": "^4.3.1", | ||
"jest-cli": "^19.0.2" | ||
Comment on lines
-33
to
-35
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Neither jest nor bootstrap is used |
||
"@silverstripe/eslint-config": "^1.0.0-alpha6", | ||
"@silverstripe/webpack-config": "^2.0.0-alpha5", | ||
"webpack": "^5.74.0", | ||
"webpack-cli": "^5.0.0" | ||
}, | ||
"engines": { | ||
"node": "^10.x" | ||
} | ||
"resolutions": { | ||
"colors": "1.4.0" | ||
}, | ||
"browserslist": [ | ||
"defaults" | ||
] | ||
} |
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixes
error Typo in static class property declaration react/no-typos
(see the docs on this rule)