nightingale-react-native-console 11.7.1 → 11.7.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/.eslintrc.json +1 -1
- package/CHANGELOG.md +8 -0
- package/package.json +13 -22
- package/rollup.config.mjs +3 -0
package/.eslintrc.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
## [11.7.2](https://github.com/christophehurpeau/nightingale/compare/v11.7.1...v11.7.2) (2021-11-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package nightingale-react-native-console
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [11.7.1](https://github.com/christophehurpeau/nightingale/compare/v11.7.0...v11.7.1) (2021-06-29)
|
|
7
15
|
|
|
8
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nightingale-react-native-console",
|
|
3
|
-
"version": "11.7.
|
|
3
|
+
"version": "11.7.2",
|
|
4
4
|
"description": "React Native and Expo handler for nightingale",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nightingale",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"directory": "packages/nightingale-react-native-console"
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/christophehurpeau/nightingale",
|
|
19
|
+
"type": "commonjs",
|
|
19
20
|
"browserslist": [
|
|
20
21
|
"defaults",
|
|
21
22
|
"> 0.2%",
|
|
@@ -23,11 +24,11 @@
|
|
|
23
24
|
"not safari < 10",
|
|
24
25
|
"not ios_saf < 10"
|
|
25
26
|
],
|
|
26
|
-
"main": "./dist/index-browser.es.js",
|
|
27
27
|
"types": "./dist/index.d.ts",
|
|
28
28
|
"module": "./dist/index-browser.es.js",
|
|
29
29
|
"browser": "./dist/index-browser.es.js",
|
|
30
30
|
"exports": {
|
|
31
|
+
"./package.json": "./package.json",
|
|
31
32
|
".": {
|
|
32
33
|
"browser": {
|
|
33
34
|
"browser:modern": {
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"build:definitions": "tsc -p tsconfig.build.json",
|
|
54
55
|
"clean": "rm -Rf docs dist test/node6 coverage",
|
|
55
56
|
"lint": "yarn run lint:eslint",
|
|
56
|
-
"lint:eslint": "
|
|
57
|
+
"lint:eslint": "cd ../.. && yarn run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/nightingale-react-native-console",
|
|
57
58
|
"watch": "pob-watch"
|
|
58
59
|
},
|
|
59
60
|
"prettier": {
|
|
@@ -82,27 +83,17 @@
|
|
|
82
83
|
]
|
|
83
84
|
},
|
|
84
85
|
"dependencies": {
|
|
85
|
-
"nightingale-ansi-formatter": "^11.7.
|
|
86
|
-
"nightingale-console-output": "^11.7.
|
|
87
|
-
"nightingale-types": "^11.7.
|
|
86
|
+
"nightingale-ansi-formatter": "^11.7.2",
|
|
87
|
+
"nightingale-console-output": "^11.7.2",
|
|
88
|
+
"nightingale-types": "^11.7.2"
|
|
88
89
|
},
|
|
89
90
|
"devDependencies": {
|
|
90
|
-
"@babel/core": "7.
|
|
91
|
-
"@babel/preset-env": "7.
|
|
92
|
-
"@pob/eslint-config": "43.2.0",
|
|
93
|
-
"@pob/eslint-config-node": "43.2.0",
|
|
94
|
-
"@pob/eslint-config-typescript": "43.2.0",
|
|
95
|
-
"@typescript-eslint/eslint-plugin": "4.28.1",
|
|
96
|
-
"@typescript-eslint/parser": "4.28.1",
|
|
91
|
+
"@babel/core": "7.16.0",
|
|
92
|
+
"@babel/preset-env": "7.16.4",
|
|
97
93
|
"babel-preset-modern-browsers": "15.0.2",
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"eslint-plugin-node": "11.1.0",
|
|
102
|
-
"eslint-plugin-unicorn": "29.0.0",
|
|
103
|
-
"pob-babel": "27.0.3",
|
|
104
|
-
"rollup": "2.52.3",
|
|
105
|
-
"typescript": "4.3.4"
|
|
94
|
+
"pob-babel": "28.5.0",
|
|
95
|
+
"rollup": "2.60.1",
|
|
96
|
+
"typescript": "4.5.2"
|
|
106
97
|
},
|
|
107
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "00b1ec6c7468b320e268a12eaac70d59a177787b"
|
|
108
99
|
}
|