Skip to content

Commit b21c455

Browse files
authored
Merge pull request #170 from BeAPI/feature/v5.0
Feature/v5.0
2 parents 18c83dd + da5a1d5 commit b21c455

File tree

93 files changed

+3254
-13246
lines changed

Some content is hidden

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

93 files changed

+3254
-13246
lines changed

.babelrc

Lines changed: 0 additions & 10 deletions
This file was deleted.

.browserslistrc

Lines changed: 0 additions & 5 deletions
This file was deleted.

.eslintrc

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"extends": [
3+
"eslint:recommended",
4+
"prettier"
5+
],
6+
"plugins": ["prettier"],
7+
"env": {
8+
"browser": true,
9+
"node": true,
10+
"es6": true
11+
},
12+
"parserOptions": {
13+
"ecmaVersion": 6,
14+
"sourceType": "module"
15+
},
16+
"rules": {
17+
"no-console": "off",
18+
"strict": ["error", "global"],
19+
"curly": "warn",
20+
"semi": [2, "never"],
21+
"no-new": 0,
22+
"prettier/prettier": [
23+
"error",
24+
{
25+
"trailingComma": "es5",
26+
"singleQuote": true,
27+
"printWidth": 120,
28+
"semi": false
29+
}
30+
]
31+
},
32+
"globals": {
33+
"jQuery": true,
34+
"wp": true
35+
}
36+
}

.eslintrc.js

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ jobs:
2424
uses: actions/setup-node@v1
2525
with:
2626
node-version: ${{ matrix.node-version }}
27-
- run: yarn install --frozen-lockfile
28-
- run: yarn run build --if-present
27+
- run: yarn
28+
- run: yarn build

.gitignore

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@ dist/assets/img/sample/cache
6565
### PHPStorm ###
6666
.idea/
6767

68-
### Conf Webpack ###
69-
config/host.js
70-
7168
### frontend build directory ###
7269
dist/
7370
src/conf-img/*.csv
@@ -76,7 +73,5 @@ src/conf-img/*.csv
7673
package-lock.json
7774

7875
### config
79-
.port
80-
.bs-port
8176
/vendor/
8277
composer.lock

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10
1+
14

.stylelintignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 5.0.0
2+
- Add Webpack 5
3+
- Refactoring
4+
- Remove bash scripts
5+
- Frontend image optimization
6+
- Remove static templates
7+
18
# 4.7.0
29
- Handle Editor patterns
310
- Handle Editor patterns categories

0 commit comments

Comments
 (0)