-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #303 from danny007in/update2
Upgraded Packages and reconfigured
- Loading branch information
Showing
17 changed files
with
21,135 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
14 | ||
20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.