@form8ion/javascript 13.0.0-alpha.3 → 13.0.0-alpha.4
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/README.md +2 -2
- package/example.js +2 -2
- package/lib/index.js +4 -10
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +4 -10
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -1195,13 +1195,6 @@ function validate(options) {
|
|
|
1195
1195
|
remark: joi.string()
|
|
1196
1196
|
}).default({})
|
|
1197
1197
|
})
|
|
1198
|
-
.keys({
|
|
1199
|
-
ciServices: joi.object().pattern(/^/, joi.object({
|
|
1200
|
-
scaffolder: joi.func().arity(1).required(),
|
|
1201
|
-
public: joi.boolean(),
|
|
1202
|
-
private: joi.boolean()
|
|
1203
|
-
})).default({})
|
|
1204
|
-
})
|
|
1205
1198
|
.keys({
|
|
1206
1199
|
plugins: {
|
|
1207
1200
|
unitTestFrameworks: pluginsSchema,
|
|
@@ -1209,7 +1202,8 @@ function validate(options) {
|
|
|
1209
1202
|
applicationTypes: pluginsSchema,
|
|
1210
1203
|
packageTypes: pluginsSchema,
|
|
1211
1204
|
monorepoTypes: pluginsSchema,
|
|
1212
|
-
hosts: pluginsSchema
|
|
1205
|
+
hosts: pluginsSchema,
|
|
1206
|
+
ciServices: pluginsSchema
|
|
1213
1207
|
}
|
|
1214
1208
|
})
|
|
1215
1209
|
.keys({
|
|
@@ -1644,7 +1638,6 @@ async function scaffolder (options) {
|
|
|
1644
1638
|
vcs,
|
|
1645
1639
|
description,
|
|
1646
1640
|
configs,
|
|
1647
|
-
ciServices,
|
|
1648
1641
|
decisions,
|
|
1649
1642
|
pathWithinParent,
|
|
1650
1643
|
registries,
|
|
@@ -1654,7 +1647,8 @@ async function scaffolder (options) {
|
|
|
1654
1647
|
monorepoTypes,
|
|
1655
1648
|
packageBundlers,
|
|
1656
1649
|
unitTestFrameworks,
|
|
1657
|
-
hosts
|
|
1650
|
+
hosts,
|
|
1651
|
+
ciServices
|
|
1658
1652
|
}
|
|
1659
1653
|
} = validate(options);
|
|
1660
1654
|
|