react-alp-loading-bar 4.1.0 → 4.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/README.md +3 -0
- package/package.json +11 -15
- package/rollup.config.mjs +0 -5
- package/tsconfig.eslint.json +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.1.2](https://github.com/christophehurpeau/alp/compare/react-alp-loading-bar@4.1.1...react-alp-loading-bar@4.1.2) (2022-10-29)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package react-alp-loading-bar
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [4.1.1](https://github.com/christophehurpeau/alp/compare/react-alp-loading-bar@4.1.0...react-alp-loading-bar@4.1.1) (2022-10-19)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package react-alp-loading-bar
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [4.1.0](https://github.com/christophehurpeau/alp/compare/react-alp-loading-bar@4.0.6...react-alp-loading-bar@4.1.0) (2022-10-16)
|
|
7
23
|
|
|
8
24
|
|
package/README.md
CHANGED
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
|
|
9
9
|
<p align="center">
|
|
10
10
|
<a href="https://npmjs.org/package/react-alp-loading-bar"><img src="https://img.shields.io/npm/v/react-alp-loading-bar.svg?style=flat-square"></a>
|
|
11
|
+
<a href="https://npmjs.org/package/react-alp-loading-bar"><img src="https://img.shields.io/npm/dw/react-alp-loading-bar.svg?style=flat-square"></a>
|
|
12
|
+
<a href="https://npmjs.org/package/react-alp-loading-bar"><img src="https://img.shields.io/node/v/react-alp-loading-bar.svg?style=flat-square"></a>
|
|
13
|
+
<a href="https://npmjs.org/package/react-alp-loading-bar"><img src="https://img.shields.io/npm/types/react-alp-loading-bar.svg?style=flat-square"></a>
|
|
11
14
|
</p>
|
|
12
15
|
|
|
13
16
|
## Install
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-alp-loading-bar",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
4
4
|
"description": "loading bar",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "Christophe Hurpeau <christophe@hurpeau.com> (https://christophe.hurpeau.com)",
|
|
@@ -47,16 +47,12 @@
|
|
|
47
47
|
"build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
|
|
48
48
|
"build:definitions": "tsc -p tsconfig.build.json",
|
|
49
49
|
"clean": "yarn clean:build",
|
|
50
|
-
"clean:build": "
|
|
50
|
+
"clean:build": "pob-babel-clean-out dist",
|
|
51
51
|
"lint": "yarn run lint:eslint",
|
|
52
52
|
"lint:eslint": "cd ../.. && yarn run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/react-alp-loading-bar",
|
|
53
53
|
"watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
|
|
54
54
|
},
|
|
55
|
-
"prettier":
|
|
56
|
-
"trailingComma": "all",
|
|
57
|
-
"singleQuote": true,
|
|
58
|
-
"arrowParens": "always"
|
|
59
|
-
},
|
|
55
|
+
"prettier": "@pob/root/prettier-config",
|
|
60
56
|
"pob": {
|
|
61
57
|
"babelEnvs": [
|
|
62
58
|
{
|
|
@@ -89,18 +85,18 @@
|
|
|
89
85
|
"react": "^18.1.0"
|
|
90
86
|
},
|
|
91
87
|
"dependencies": {
|
|
92
|
-
"@babel/runtime": "^7.
|
|
88
|
+
"@babel/runtime": "^7.19.0",
|
|
93
89
|
"alp-types": "3.1.0",
|
|
94
|
-
"react-alp-context": "4.1.
|
|
90
|
+
"react-alp-context": "4.1.2"
|
|
95
91
|
},
|
|
96
92
|
"devDependencies": {
|
|
97
|
-
"@babel/core": "7.
|
|
98
|
-
"@babel/preset-env": "7.
|
|
99
|
-
"@babel/preset-react": "7.
|
|
93
|
+
"@babel/core": "7.19.3",
|
|
94
|
+
"@babel/preset-env": "7.19.4",
|
|
95
|
+
"@babel/preset-react": "7.18.6",
|
|
100
96
|
"babel-preset-modern-browsers": "15.0.2",
|
|
101
|
-
"pob-babel": "34.
|
|
97
|
+
"pob-babel": "34.3.0",
|
|
102
98
|
"react": "18.1.0",
|
|
103
|
-
"typescript": "4.
|
|
99
|
+
"typescript": "4.8.4"
|
|
104
100
|
},
|
|
105
|
-
"gitHead": "
|
|
101
|
+
"gitHead": "e39c7b67a1da463cbec7753aac9e4253b832f0f8"
|
|
106
102
|
}
|
package/rollup.config.mjs
DELETED