react-native-update-cli 1.20.6 → 1.22.0
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/lib/bundle.js +1 -1
- package/package.json +7 -1
- package/src/.DS_Store +0 -0
- package/src/bundle.js +1 -1
package/lib/bundle.js
CHANGED
|
@@ -198,7 +198,7 @@ async function pack(dir, output) {
|
|
|
198
198
|
}
|
|
199
199
|
const childs = fs.readdirSync(root);
|
|
200
200
|
for (const name of childs) {
|
|
201
|
-
if (name === '.' || name === '..') {
|
|
201
|
+
if (name === '.' || name === '..' || name === 'index.bundlejs.map') {
|
|
202
202
|
continue;
|
|
203
203
|
}
|
|
204
204
|
const fullPath = _path2.default.join(root, name);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-update-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.22.0",
|
|
4
4
|
"description": "Command tools for javaScript updater with `pushy` service for react native apps.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -31,11 +31,17 @@
|
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://github.com/reactnativecn/react-native-pushy/tree/master/react-native-pushy-cli",
|
|
33
33
|
"dependencies": {
|
|
34
|
+
"bplist-parser": "^0.2.0",
|
|
35
|
+
"bytebuffer": "^5.0.1",
|
|
36
|
+
"cgbi-to-png": "^1.0.7",
|
|
34
37
|
"cli-arguments": "^0.2.1",
|
|
38
|
+
"commander": "^7.2.0",
|
|
35
39
|
"filesize-parser": "^1.5.0",
|
|
36
40
|
"fs-extra": "8",
|
|
37
41
|
"gradle-to-js": "^2.0.1",
|
|
42
|
+
"isomorphic-unzip": "^1.1.5",
|
|
38
43
|
"node-fetch": "^2.6.1",
|
|
44
|
+
"plist": "^3.0.1",
|
|
39
45
|
"progress": "^2.0.3",
|
|
40
46
|
"properties": "^1.2.1",
|
|
41
47
|
"read": "^1.0.7",
|
package/src/.DS_Store
CHANGED
|
Binary file
|
package/src/bundle.js
CHANGED
|
@@ -235,7 +235,7 @@ async function pack(dir, output) {
|
|
|
235
235
|
}
|
|
236
236
|
const childs = fs.readdirSync(root);
|
|
237
237
|
for (const name of childs) {
|
|
238
|
-
if (name === '.' || name === '..') {
|
|
238
|
+
if (name === '.' || name === '..' || name === 'index.bundlejs.map') {
|
|
239
239
|
continue;
|
|
240
240
|
}
|
|
241
241
|
const fullPath = path.join(root, name);
|