Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
21860bd
refactor : bye bye templates
firestar300 Apr 22, 2021
70c1888
feat (webpack) : add webpack 5 and usefull tools ⚒️
firestar300 Apr 23, 2021
11a854c
fix (Assets) : array code style
firestar300 Apr 24, 2021
2f9ce8e
feat (webpack) : add new entry for editor
firestar300 Apr 24, 2021
8b470c9
feat (postcss.config) : add different config for dev mode
firestar300 Apr 24, 2021
30d3f74
refactor (webpack) : remove old webpack config
firestar300 Apr 24, 2021
9433644
feat (postcss) : add postcss-sort-media-queries
firestar300 Apr 24, 2021
b766298
feat (webpack) : add loader to optimize images
firestar300 Apr 24, 2021
7caced6
refactor (webpack) : set common loaders in webpack.common.js
firestar300 Apr 24, 2021
fb81533
refactor (js) : remove unused files
firestar300 Apr 25, 2021
ff82f0f
fix (Svg) : tmp fix path to svg sprite
firestar300 Apr 25, 2021
44a3b06
refactor (config) : remove unused stylelint.config.js
firestar300 Apr 25, 2021
0e1c56b
refactor : add one example of conf-img tpl file
firestar300 Apr 25, 2021
e43fc27
feat : add intro page
firestar300 Apr 25, 2021
ff79d9a
docs : update readme.md
firestar300 Apr 25, 2021
5d87717
docs : fix wording
firestar300 Apr 25, 2021
ec2bbf2
docs : update changelog
firestar300 Apr 25, 2021
2634e1c
refactor : remove unused .port file
firestar300 Apr 25, 2021
8d0e8c8
build (psalm) : fix psalm.xml
firestar300 Apr 25, 2021
0e262f5
docs (Readme.md) : add "Maintened" badge
firestar300 Apr 26, 2021
89e8792
docs (readme.md) : set yarn commands instead of npm
firestar300 Apr 26, 2021
45f388f
feat (js) : remove AbstractDomElement jQuery dependency, add utils fo…
n-langle Apr 26, 2021
b63e41a
refactor : remove unused files
firestar300 Apr 26, 2021
7011726
fix (AccessibleMenu) : path to AbstractDomElement
firestar300 Apr 26, 2021
d5b29b0
style (utils) : replace var with let
firestar300 Apr 26, 2021
7f5675f
fix (extend) : replace let by var
n-langle Apr 26, 2021
1b8a30a
refactor (Abstract scss) : rename editor-style var and mixin accordin…
n-langle Apr 26, 2021
ce7b0d8
fix (build) : readd .eslintignore file
firestar300 Apr 26, 2021
c71f9d0
fix (package.json) : bundle-report command
firestar300 Apr 26, 2021
5f5b6f9
build (webpack) : add stats errors-only and minimum
firestar300 Jul 29, 2021
eb9274c
doc (README) : fix readme
firestar300 Aug 2, 2021
a66c0dc
feat (esbuild) : replace babel with esbuild
firestar300 Aug 2, 2021
f599346
refactor (js) : remove import picturefill
firestar300 Aug 2, 2021
026cfe9
fix (esbuild-loader) : remove esbuild and add esbuild-loader
firestar300 Aug 2, 2021
7ffa506
Merge pull request #169 from BeAPI/es-build-for-v5
firestar300 Aug 2, 2021
a284115
ci (node.js) : change version for node js test
firestar300 Aug 2, 2021
8bb01ff
ci (nodejs) : add run key
firestar300 Aug 2, 2021
4723f48
ci (node.js) : change version for node js test
firestar300 Aug 2, 2021
46a0b22
ci (nodejs) : use npm instead of yarn for tests
firestar300 Aug 2, 2021
e33d26f
fix (browsersync.config.js) : check if .lando.yml exists
firestar300 Aug 2, 2021
47dbf58
ci (nodejs) : use yarn instead of npm
firestar300 Aug 2, 2021
9461147
ci (node.js) : change version for node js test
firestar300 Aug 2, 2021
da5a1d5
Merge branch 'master' into feature/v5.0
firestar300 Aug 27, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .babelrc

This file was deleted.

5 changes: 0 additions & 5 deletions .browserslistrc

This file was deleted.

36 changes: 36 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -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.

4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn run build --if-present
- run: yarn
- run: yarn build
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10
14
4 changes: 0 additions & 4 deletions .stylelintignore

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Loading