@getmonoceros/workbench 1.6.4 → 1.6.5
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/bin.js +2 -2
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -804,7 +804,7 @@ function buildDevcontainerJson(opts, dockerMode = "rootful") {
|
|
|
804
804
|
features[f.devcontainerKey] = f.options;
|
|
805
805
|
}
|
|
806
806
|
const featuresField = Object.keys(features).length > 0 ? { features } : void 0;
|
|
807
|
-
const idmapSuffix = dockerMode === "rootless" ? ",idmap" : "";
|
|
807
|
+
const idmapSuffix = dockerMode === "rootless" ? ",idmap=true" : "";
|
|
808
808
|
const homeMounts = [];
|
|
809
809
|
for (const f of resolvedFeatures) {
|
|
810
810
|
const allSubs = [
|
|
@@ -2939,7 +2939,7 @@ function warnOnDeprecatedFeatureRefs(containerFeatures, globalConfig, logger) {
|
|
|
2939
2939
|
}
|
|
2940
2940
|
|
|
2941
2941
|
// src/version.ts
|
|
2942
|
-
var CLI_VERSION = true ? "1.6.
|
|
2942
|
+
var CLI_VERSION = true ? "1.6.5" : "dev";
|
|
2943
2943
|
|
|
2944
2944
|
// src/commands/_dispatch.ts
|
|
2945
2945
|
import { consola as consola11 } from "consola";
|