Skip to content

Commit

Permalink
Merge pull request #303 from danny007in/update2
Browse files Browse the repository at this point in the history
Upgraded Packages and reconfigured
  • Loading branch information
puikinsh authored May 15, 2024
2 parents 6a34bfc + db3582f commit d138172
Show file tree
Hide file tree
Showing 17 changed files with 21,135 additions and 168 deletions.
7 changes: 7 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"presets": ["@babel/preset-env"],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
]
}
56 changes: 56 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"extends": "airbnb-base",
"parser": "@babel/eslint-parser",
"settings": {
"ecmascript": 7
},
"parserOptions": {
"ecmaVersion": 2018,
"ecmaFeatures": {
"modules": true,
"destructuring": true,
"classes": true,
"forOf": true,
"blockBindings": true,
"arrowFunctions": true
}
},
"env": {
"browser": true
},
"rules": {
"arrow-body-style": 0,
"prefer-arrow-callback": 0,
"arrow-parens": 0,
"no-param-reassign": 0,
"no-new": 0,
"consistent-return": 0,
"key-spacing": 0,
"no-multi-spaces": 0,
"no-underscore-dangle": 0,
"one-var": 0,
"global-require": 0,
"class-methods-use-this": 0,
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}],
"func-names": 0,
"function-paren-newline": 0,
"indent": 2,
"new-cap": 0,
"no-plusplus": 0,
"no-return-assign": 0,
"quote-props": 0,
"template-curly-spacing": 0,
"no-unused-expressions": 0,
"import/extensions": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"import/prefer-default-export": 0,
"linebreak-style": ["error", "windows"]
}
}
65 changes: 0 additions & 65 deletions .eslintrc.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ logs
npm-debug.log*
node_modules
yarn.lock
package-lock.json

# ----------------------------
# Project Folders
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14
20
9 changes: 9 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": "stylelint-config-standard",
"rules": {
"at-rule-no-unknown": null,
"at-rule-empty-line-before": null,
"selector-list-comma-newline-after": null,
"block-opening-brace-space-before": null
}
}
7 changes: 0 additions & 7 deletions .stylelintrc.yml

This file was deleted.

18 changes: 12 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
### Changelog
# Changelog

#### 1.0.0
## [2.1.0]
- Upgraded all dependencies

- Intial release
## [2.0.0]

### Changed
- Upgrade to Bootstrap 5

#### 1.1.0
## [1.1.0]

### Changed
- Upgrade to webpack 5

#### 2.0.0
## [1.0.0]

- Upgrade to Bootstrap 5
### Added
- Intial release
13 changes: 11 additions & 2 deletions browserslist
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
Last 3 versions
IE 11
# https://github.com/browserslist/browserslist#readme

>= 0.5%
last 2 major versions
not dead
Chrome >= 60
Firefox >= 60
Firefox ESR
iOS >= 12
Safari >= 12
not Explorer <= 11
Loading

0 comments on commit d138172

Please sign in to comment.