react-native-platform-override 0.4.7 → 0.81.0-preview.10
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/bin.js +1 -2
- package/lib-commonjs/Api.d.ts +57 -56
- package/lib-commonjs/Api.js +187 -167
- package/lib-commonjs/Api.js.map +1 -1
- package/lib-commonjs/BatchingQueue.d.ts +15 -15
- package/lib-commonjs/BatchingQueue.js +57 -57
- package/lib-commonjs/BatchingQueue.js.map +1 -1
- package/lib-commonjs/Cli.d.ts +7 -7
- package/lib-commonjs/Cli.js +323 -291
- package/lib-commonjs/Cli.js.map +1 -1
- package/lib-commonjs/CrossProcessLock.d.ts +44 -44
- package/lib-commonjs/CrossProcessLock.js +147 -144
- package/lib-commonjs/CrossProcessLock.js.map +1 -1
- package/lib-commonjs/DiffStrategy.d.ts +24 -24
- package/lib-commonjs/DiffStrategy.js +34 -34
- package/lib-commonjs/DiffStrategy.js.map +1 -1
- package/lib-commonjs/FileRepository.d.ts +63 -62
- package/lib-commonjs/FileRepository.js +21 -21
- package/lib-commonjs/FileRepository.js.map +1 -1
- package/lib-commonjs/FileSearch.d.ts +21 -21
- package/lib-commonjs/FileSearch.js +77 -91
- package/lib-commonjs/FileSearch.js.map +1 -1
- package/lib-commonjs/FileSystemRepository.d.ts +21 -20
- package/lib-commonjs/FileSystemRepository.js +62 -59
- package/lib-commonjs/FileSystemRepository.js.map +1 -1
- package/lib-commonjs/GitReactFileRepository.d.ts +57 -58
- package/lib-commonjs/GitReactFileRepository.js +202 -208
- package/lib-commonjs/GitReactFileRepository.js.map +1 -1
- package/lib-commonjs/Hash.d.ts +34 -33
- package/lib-commonjs/Hash.js +81 -81
- package/lib-commonjs/Hash.js.map +1 -1
- package/lib-commonjs/Manifest.d.ts +80 -80
- package/lib-commonjs/Manifest.js +157 -154
- package/lib-commonjs/Manifest.js.map +1 -1
- package/lib-commonjs/Override.d.ts +182 -182
- package/lib-commonjs/Override.js +248 -245
- package/lib-commonjs/Override.js.map +1 -1
- package/lib-commonjs/OverrideFactory.d.ts +33 -33
- package/lib-commonjs/OverrideFactory.js +85 -70
- package/lib-commonjs/OverrideFactory.js.map +1 -1
- package/lib-commonjs/OverridePrompt.d.ts +30 -30
- package/lib-commonjs/OverridePrompt.js +130 -104
- package/lib-commonjs/OverridePrompt.js.map +1 -1
- package/lib-commonjs/PackageUtils.d.ts +15 -15
- package/lib-commonjs/PackageUtils.js +40 -38
- package/lib-commonjs/PackageUtils.js.map +1 -1
- package/lib-commonjs/PathUtils.d.ts +14 -14
- package/lib-commonjs/PathUtils.js +31 -28
- package/lib-commonjs/PathUtils.js.map +1 -1
- package/lib-commonjs/Serialized.d.ts +158 -158
- package/lib-commonjs/Serialized.js +145 -119
- package/lib-commonjs/Serialized.js.map +1 -1
- package/lib-commonjs/UpgradeStrategy.d.ts +39 -39
- package/lib-commonjs/UpgradeStrategy.js +102 -99
- package/lib-commonjs/UpgradeStrategy.js.map +1 -1
- package/lib-commonjs/ValidationStrategy.d.ts +57 -57
- package/lib-commonjs/ValidationStrategy.js +124 -124
- package/lib-commonjs/ValidationStrategy.js.map +1 -1
- package/lib-commonjs/refFromVersion.d.ts +10 -0
- package/lib-commonjs/refFromVersion.js +99 -0
- package/lib-commonjs/refFromVersion.js.map +1 -0
- package/lib-commonjs/scripts/generateManifest.d.ts +7 -7
- package/lib-commonjs/scripts/generateManifest.js +196 -170
- package/lib-commonjs/scripts/generateManifest.js.map +1 -1
- package/lib-commonjs/scripts/hashFile.d.ts +7 -7
- package/lib-commonjs/scripts/hashFile.js +17 -14
- package/lib-commonjs/scripts/hashFile.js.map +1 -1
- package/lib-commonjs/scripts/testLocks.d.ts +1 -1
- package/lib-commonjs/scripts/testLocks.js +29 -26
- package/lib-commonjs/scripts/testLocks.js.map +1 -1
- package/package.json +53 -43
- package/CHANGELOG.json +0 -554
- package/CHANGELOG.md +0 -238
package/package.json
CHANGED
|
@@ -1,86 +1,96 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-platform-override",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.81.0-preview.10",
|
|
4
4
|
"description": "react-native-platform-override offers CLI tools to manage Javascript overrides in out-of-tree React Native platforms",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./lib-commonjs/Api.js",
|
|
7
7
|
"typings": "./lib-commonjs/Api.d.ts",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "
|
|
10
|
+
"url": "https://github.com/microsoft/react-native-windows",
|
|
11
11
|
"directory": "packages/react-native-platform-override"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
|
-
"build": "
|
|
15
|
-
"clean": "
|
|
16
|
-
"lint": "
|
|
17
|
-
"lint:fix": "
|
|
18
|
-
"test": "
|
|
19
|
-
"watch": "
|
|
14
|
+
"build": "rnw-scripts build",
|
|
15
|
+
"clean": "rnw-scripts clean",
|
|
16
|
+
"lint": "rnw-scripts lint",
|
|
17
|
+
"lint:fix": "rnw-scripts lint:fix",
|
|
18
|
+
"test": "rnw-scripts test",
|
|
19
|
+
"watch": "rnw-scripts watch"
|
|
20
20
|
},
|
|
21
21
|
"bin": {
|
|
22
22
|
"react-native-platform-override": "./bin.js"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@react-native-windows/
|
|
26
|
-
"
|
|
25
|
+
"@react-native-windows/fs": "0.81.0-preview.1",
|
|
26
|
+
"@react-native-windows/package-utils": "0.81.0-preview.1",
|
|
27
|
+
"@typescript-eslint/eslint-plugin": "^7.1.1",
|
|
28
|
+
"@typescript-eslint/parser": "^7.1.1",
|
|
29
|
+
"async": "^3.2.3",
|
|
27
30
|
"chalk": "^4.1.0",
|
|
28
31
|
"fp-ts": "^2.5.0",
|
|
29
|
-
"globby": "^
|
|
32
|
+
"globby": "^11.1.0",
|
|
30
33
|
"inquirer": "^7.1.0",
|
|
31
34
|
"io-ts": "^2.1.1",
|
|
32
35
|
"isutf8": "^3.0.0",
|
|
33
36
|
"lodash": "^4.17.15",
|
|
34
|
-
"node-fetch": "^2.6.
|
|
37
|
+
"node-fetch": "^2.6.7",
|
|
35
38
|
"ora": "^3.4.0",
|
|
36
39
|
"semver": "^7.3.2",
|
|
37
|
-
"simple-git": "^
|
|
40
|
+
"simple-git": "^3.3.0",
|
|
41
|
+
"source-map-support": "^0.5.19",
|
|
38
42
|
"upath": "^1.2.0",
|
|
39
|
-
"yargs": "^
|
|
43
|
+
"yargs": "^16.2.0"
|
|
40
44
|
},
|
|
41
45
|
"devDependencies": {
|
|
42
|
-
"@babel/core": "^7.
|
|
43
|
-
"@babel/preset-env": "^7.
|
|
46
|
+
"@babel/core": "^7.25.2",
|
|
47
|
+
"@babel/preset-env": "^7.25.3",
|
|
44
48
|
"@babel/preset-typescript": "^7.8.3",
|
|
45
|
-
"@
|
|
46
|
-
"@rnw-scripts/
|
|
47
|
-
"@rnw-scripts/
|
|
48
|
-
"@rnw-scripts/
|
|
49
|
-
"@
|
|
50
|
-
"@types/async": "^3.2.3",
|
|
49
|
+
"@rnw-scripts/eslint-config": "1.2.37",
|
|
50
|
+
"@rnw-scripts/jest-unittest-config": "1.5.12",
|
|
51
|
+
"@rnw-scripts/just-task": "2.3.56",
|
|
52
|
+
"@rnw-scripts/ts-config": "2.0.6",
|
|
53
|
+
"@types/async": "^3.2.5",
|
|
51
54
|
"@types/chalk": "^2.2.0",
|
|
52
55
|
"@types/diff-match-patch": "^1.0.32",
|
|
53
|
-
"@types/globby": "^9.1.0",
|
|
54
56
|
"@types/inquirer": "^6.5.0",
|
|
55
|
-
"@types/jest": "^
|
|
56
|
-
"@types/lodash": "^4.14.
|
|
57
|
-
"@types/
|
|
58
|
-
"@types/node": "^
|
|
59
|
-
"@types/node-fetch": "^2.5.7",
|
|
57
|
+
"@types/jest": "^29.2.2",
|
|
58
|
+
"@types/lodash": "^4.14.168",
|
|
59
|
+
"@types/node": "^22.14.0",
|
|
60
|
+
"@types/node-fetch": "^2.5.8",
|
|
60
61
|
"@types/ora": "^3.2.0",
|
|
61
62
|
"@types/semver": "^7.3.3",
|
|
62
|
-
"@types/yargs": "^
|
|
63
|
-
"babel-jest": "^
|
|
63
|
+
"@types/yargs": "^16.0.0",
|
|
64
|
+
"babel-jest": "^29.6.3",
|
|
64
65
|
"diff-match-patch": "^1.0.4",
|
|
65
|
-
"eslint": "
|
|
66
|
-
"jest": "^
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"typescript": "^3.8.3"
|
|
66
|
+
"eslint": "^8.19.0",
|
|
67
|
+
"jest": "^29.7.0",
|
|
68
|
+
"minimatch": "^9.0.0",
|
|
69
|
+
"prettier": "2.8.8",
|
|
70
|
+
"typescript": "5.0.4"
|
|
71
71
|
},
|
|
72
|
+
"peerDependencies": {
|
|
73
|
+
"react-native": "^0.81.0-0"
|
|
74
|
+
},
|
|
75
|
+
"beachball": {
|
|
76
|
+
"defaultNpmTag": "preview",
|
|
77
|
+
"disallowedChangeTypes": [
|
|
78
|
+
"major",
|
|
79
|
+
"minor",
|
|
80
|
+
"patch",
|
|
81
|
+
"premajor",
|
|
82
|
+
"preminor",
|
|
83
|
+
"prepatch"
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
"promoteRelease": true,
|
|
72
87
|
"engines": {
|
|
73
|
-
"node": ">=
|
|
88
|
+
"node": ">= 22"
|
|
74
89
|
},
|
|
75
90
|
"files": [
|
|
76
91
|
"bin.js",
|
|
77
92
|
"lib-commonjs",
|
|
78
93
|
"!lib-commonjs/e2etest/**",
|
|
79
94
|
"!lib-commonjs/test/**"
|
|
80
|
-
]
|
|
81
|
-
"beachball": {
|
|
82
|
-
"disallowedChangeTypes": [
|
|
83
|
-
"major"
|
|
84
|
-
]
|
|
85
|
-
}
|
|
95
|
+
]
|
|
86
96
|
}
|