@applicaster/zapplicaster-cli 14.0.4 → 14.0.5-rc.1
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/package.json +5 -5
- package/src/commands/index.js +4 -0
- package/src/commands/publishPlugin/__tests__/__snapshots__/configurator.test.js.snap +3 -0
- package/src/commands/publishPlugin/__tests__/configurator.test.js +1 -0
- package/src/commands/publishPlugin/configurator.js +6 -0
- package/src/commands/publishPlugin/generateManifest.js +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applicaster/zapplicaster-cli",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.5-rc.1",
|
|
4
4
|
"description": "CLI Tool for the zapp app and Quick Brick project",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"publishConfig": {
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/applicaster/quickbrick#readme",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@applicaster/zapp-react-dom-cli-template": "14.0.
|
|
32
|
-
"@applicaster/zapp-react-native-android-tv-cli-template": "14.0.
|
|
33
|
-
"@applicaster/zapp-react-native-cli-template": "14.0.
|
|
34
|
-
"@applicaster/zapp-react-native-tvos-cli-template": "14.0.
|
|
31
|
+
"@applicaster/zapp-react-dom-cli-template": "14.0.5-rc.1",
|
|
32
|
+
"@applicaster/zapp-react-native-android-tv-cli-template": "14.0.5-rc.1",
|
|
33
|
+
"@applicaster/zapp-react-native-cli-template": "14.0.5-rc.1",
|
|
34
|
+
"@applicaster/zapp-react-native-tvos-cli-template": "14.0.5-rc.1",
|
|
35
35
|
"axios": "^0.28.0",
|
|
36
36
|
"camelize": "^1.0.0",
|
|
37
37
|
"chalk": "^2.3.2",
|
package/src/commands/index.js
CHANGED
|
@@ -123,6 +123,10 @@ const commands = [
|
|
|
123
123
|
"-m, --manifest-only",
|
|
124
124
|
"Only generates the manifest file, doesn't publish the plugin",
|
|
125
125
|
],
|
|
126
|
+
[
|
|
127
|
+
"-t, --targets [targets]",
|
|
128
|
+
"Comma-separated list of targets (e.g., 'tv,mobile,tablet') for iterative releases",
|
|
129
|
+
],
|
|
126
130
|
],
|
|
127
131
|
action: publishPlugin,
|
|
128
132
|
},
|
|
@@ -74,6 +74,7 @@ async function configurator({ cliArgs, cliOptions }) {
|
|
|
74
74
|
singlePlatform: platform = "",
|
|
75
75
|
skipGit = false,
|
|
76
76
|
manifestOnly = false,
|
|
77
|
+
targets,
|
|
77
78
|
} = cliOptions;
|
|
78
79
|
|
|
79
80
|
if (!version || !semver.valid(version)) {
|
|
@@ -121,6 +122,10 @@ async function configurator({ cliArgs, cliOptions }) {
|
|
|
121
122
|
);
|
|
122
123
|
}
|
|
123
124
|
|
|
125
|
+
const parsedTargets = targets
|
|
126
|
+
? targets.split(",").map((t) => t.trim())
|
|
127
|
+
: undefined;
|
|
128
|
+
|
|
124
129
|
const config = {
|
|
125
130
|
pluginPath: resolvedPluginPath,
|
|
126
131
|
pluginPackageJson,
|
|
@@ -133,6 +138,7 @@ async function configurator({ cliArgs, cliOptions }) {
|
|
|
133
138
|
skipGit,
|
|
134
139
|
zappOwnerAccountId,
|
|
135
140
|
manifestOnly,
|
|
141
|
+
targets: parsedTargets,
|
|
136
142
|
};
|
|
137
143
|
|
|
138
144
|
return config;
|
|
@@ -27,9 +27,10 @@ function renderManifest({
|
|
|
27
27
|
pluginPath,
|
|
28
28
|
version,
|
|
29
29
|
dryRun,
|
|
30
|
+
targets,
|
|
30
31
|
}) {
|
|
31
32
|
return async function (platform) {
|
|
32
|
-
const manifest = manifestConfig({ platform, version });
|
|
33
|
+
const manifest = manifestConfig({ platform, version, targets });
|
|
33
34
|
|
|
34
35
|
const enrichedManifest = enrichManifest({ manifest, packageJson });
|
|
35
36
|
|
|
@@ -49,7 +50,7 @@ function renderManifest({
|
|
|
49
50
|
}
|
|
50
51
|
|
|
51
52
|
async function generateManifest(configuration) {
|
|
52
|
-
const { pluginPath, platforms, version, dryRun } = configuration;
|
|
53
|
+
const { pluginPath, platforms, version, dryRun, targets } = configuration;
|
|
53
54
|
|
|
54
55
|
if (!platforms) {
|
|
55
56
|
logger.log("Manifest does not exsist, Skipping generation");
|
|
@@ -70,6 +71,7 @@ async function generateManifest(configuration) {
|
|
|
70
71
|
packageJson,
|
|
71
72
|
version,
|
|
72
73
|
dryRun,
|
|
74
|
+
targets,
|
|
73
75
|
});
|
|
74
76
|
|
|
75
77
|
return Promise.all(R.map(manifestRenderer, platforms));
|