Skip to content

Commit d138172

Browse files
authored
Merge pull request #303 from danny007in/update2
Upgraded Packages and reconfigured
2 parents 6a34bfc + db3582f commit d138172

17 files changed

+21135
-168
lines changed

.babelrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"presets": ["@babel/preset-env"],
3+
"plugins": [
4+
"@babel/plugin-proposal-class-properties",
5+
"@babel/plugin-proposal-object-rest-spread"
6+
]
7+
}

.eslintrc.json

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"extends": "airbnb-base",
3+
"parser": "@babel/eslint-parser",
4+
"settings": {
5+
"ecmascript": 7
6+
},
7+
"parserOptions": {
8+
"ecmaVersion": 2018,
9+
"ecmaFeatures": {
10+
"modules": true,
11+
"destructuring": true,
12+
"classes": true,
13+
"forOf": true,
14+
"blockBindings": true,
15+
"arrowFunctions": true
16+
}
17+
},
18+
"env": {
19+
"browser": true
20+
},
21+
"rules": {
22+
"arrow-body-style": 0,
23+
"prefer-arrow-callback": 0,
24+
"arrow-parens": 0,
25+
"no-param-reassign": 0,
26+
"no-new": 0,
27+
"consistent-return": 0,
28+
"key-spacing": 0,
29+
"no-multi-spaces": 0,
30+
"no-underscore-dangle": 0,
31+
"one-var": 0,
32+
"global-require": 0,
33+
"class-methods-use-this": 0,
34+
"comma-dangle": ["error", {
35+
"arrays": "always-multiline",
36+
"objects": "always-multiline",
37+
"imports": "always-multiline",
38+
"exports": "always-multiline",
39+
"functions": "never"
40+
}],
41+
"func-names": 0,
42+
"function-paren-newline": 0,
43+
"indent": 2,
44+
"new-cap": 0,
45+
"no-plusplus": 0,
46+
"no-return-assign": 0,
47+
"quote-props": 0,
48+
"template-curly-spacing": 0,
49+
"no-unused-expressions": 0,
50+
"import/extensions": 0,
51+
"import/no-extraneous-dependencies": 0,
52+
"import/no-unresolved": 0,
53+
"import/prefer-default-export": 0,
54+
"linebreak-style": ["error", "windows"]
55+
}
56+
}

.eslintrc.yml

-65
This file was deleted.

.github/workflows/merge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
node-version: [14.x]
14+
node-version: [20.x]
1515

1616
steps:
1717
- uses: actions/checkout@v3

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
node-version: [14.x]
13+
node-version: [20.x]
1414

1515
steps:
1616
- uses: actions/checkout@v3

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ logs
2323
npm-debug.log*
2424
node_modules
2525
yarn.lock
26-
package-lock.json
2726

2827
# ----------------------------
2928
# Project Folders

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14
1+
20

.stylelintrc.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "stylelint-config-standard",
3+
"rules": {
4+
"at-rule-no-unknown": null,
5+
"at-rule-empty-line-before": null,
6+
"selector-list-comma-newline-after": null,
7+
"block-opening-brace-space-before": null
8+
}
9+
}

.stylelintrc.yml

-7
This file was deleted.

CHANGELOG.md

+12-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
1-
### Changelog
1+
# Changelog
22

3-
#### 1.0.0
3+
## [2.1.0]
4+
- Upgraded all dependencies
45

5-
- Intial release
6+
## [2.0.0]
7+
8+
### Changed
9+
- Upgrade to Bootstrap 5
610

7-
#### 1.1.0
11+
## [1.1.0]
812

13+
### Changed
914
- Upgrade to webpack 5
1015

11-
#### 2.0.0
16+
## [1.0.0]
1217

13-
- Upgrade to Bootstrap 5
18+
### Added
19+
- Intial release

browserslist

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
1-
Last 3 versions
2-
IE 11
1+
# https://github.com/browserslist/browserslist#readme
2+
3+
>= 0.5%
4+
last 2 major versions
5+
not dead
6+
Chrome >= 60
7+
Firefox >= 60
8+
Firefox ESR
9+
iOS >= 12
10+
Safari >= 12
11+
not Explorer <= 11

0 commit comments

Comments
 (0)