Skip to content

Commit

Permalink
Merge pull request #160 from BeAPI/feature/webpack5
Browse files Browse the repository at this point in the history
Webpack 5
  • Loading branch information
firestar300 committed Apr 26, 2021
2 parents c953b3f + 9ea6400 commit 34825e0
Show file tree
Hide file tree
Showing 91 changed files with 3,815 additions and 11,487 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Expand Up @@ -2,7 +2,7 @@
"presets": [
["@babel/preset-env", {
"targets": {
"browsers": ["last 2 versions", "ie >= 9", "Firefox ESR"]
"browsers": ["last 2 versions", "IE 11", "> 0.25%"]
}
}]
],
Expand Down
5 changes: 0 additions & 5 deletions .browserslistrc

This file was deleted.

36 changes: 36 additions & 0 deletions .eslintrc
@@ -0,0 +1,36 @@
{
"extends": [
"eslint:recommended",
"prettier"
],
"plugins": ["prettier"],
"env": {
"browser": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"no-console": "off",
"strict": ["error", "global"],
"curly": "warn",
"semi": [2, "never"],
"no-new": 0,
"prettier/prettier": [
"error",
{
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120,
"semi": false
}
]
},
"globals": {
"jQuery": true,
"wp": true
}
}
27 changes: 0 additions & 27 deletions .eslintrc.js

This file was deleted.

5 changes: 0 additions & 5 deletions .gitignore
Expand Up @@ -65,9 +65,6 @@ dist/assets/img/sample/cache
### PHPStorm ###
.idea/

### Conf Webpack ###
config/host.js

### frontend build directory ###
dist/
src/conf-img/*.csv
Expand All @@ -76,7 +73,5 @@ src/conf-img/*.csv
package-lock.json

### config
.port
.bs-port
/vendor/
composer.lock
2 changes: 1 addition & 1 deletion .nvmrc
@@ -1 +1 @@
10
14
4 changes: 0 additions & 4 deletions .stylelintignore

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
# 5.0.0
- Add Webpack 5
- Refactoring
- Remove bash scripts
- Frontend image optimization
- Remove static templates

# 4.7.0
- Handle Editor patterns
- Handle Editor patterns categories
Expand Down

0 comments on commit 34825e0

Please sign in to comment.