@biffo/cli 0.103.2 → 0.103.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/dist/index.js +2 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2029,9 +2029,7 @@ function pluginModuleSource(cwd, name) {
|
|
|
2029
2029
|
return isFirstPartyPlugin(cwd, name) ? FIRST_PARTY_TERRAFORM(name) : THIRD_PARTY_TERRAFORM(name);
|
|
2030
2030
|
}
|
|
2031
2031
|
function listWireablePlugins(cwd) {
|
|
2032
|
-
|
|
2033
|
-
const firstParty = firstPartyPluginNames(cwd);
|
|
2034
|
-
return [.../* @__PURE__ */ new Set([...copied, ...firstParty])].sort();
|
|
2032
|
+
return listPluginModules(cwd).filter((name) => !isFirstPartyPlugin(cwd, name)).sort();
|
|
2035
2033
|
}
|
|
2036
2034
|
function firstPartyPluginNames(cwd) {
|
|
2037
2035
|
const dir = join10(cwd, "services", "_plugins");
|
|
@@ -2217,8 +2215,7 @@ function syncPluginTerraform(cwd) {
|
|
|
2217
2215
|
const skippedEnvironments = listUnwirableEnvironments(cwd);
|
|
2218
2216
|
const changedPaths = [];
|
|
2219
2217
|
const rendered = plugins.map((name) => {
|
|
2220
|
-
const
|
|
2221
|
-
const moduleDir = firstParty ? join10(cwd, "services", "_plugins", name, "terraform") : join10(cwd, "modules", "plugins", name);
|
|
2218
|
+
const moduleDir = join10(cwd, "modules", "plugins", name);
|
|
2222
2219
|
return {
|
|
2223
2220
|
name,
|
|
2224
2221
|
declaredVariables: declaredVariables(moduleDir),
|