@caleuche/cli 0.5.2 → 0.5.3
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 +6 -0
- package/dist/batch.js +1 -3
- package/package.json +1 -1
- package/src/batch.ts +1 -3
package/CHANGELOG.md
CHANGED
package/dist/batch.js
CHANGED
|
@@ -97,9 +97,7 @@ function batchCompile(batchFile, options) {
|
|
|
97
97
|
if (!resolvedVariant) {
|
|
98
98
|
process.exit(1);
|
|
99
99
|
}
|
|
100
|
-
|
|
101
|
-
sample.tags = variant.tags;
|
|
102
|
-
}
|
|
100
|
+
sample.tags = variant.tags;
|
|
103
101
|
const effectiveOutputPath = path_1.default.join(options?.outputDir || workingDirectory, variant.output);
|
|
104
102
|
if (!(0, common_1.compileAndWriteOutput)(sample, resolvedVariant.properties, effectiveOutputPath, {
|
|
105
103
|
project: sample.dependencies && sample.dependencies.length > 0,
|
package/package.json
CHANGED
package/src/batch.ts
CHANGED