bx-mac 0.10.0 → 0.11.0

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dist/bx.js +4 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -218,7 +218,7 @@ ro:shared/toolchain
218
218
 
219
219
  Deny rules are applied **in addition** to the built-in protected list:
220
220
 
221
- > 🔒 `.Trash` `.ssh` `.gnupg` `.docker` `.zsh_sessions` `.cargo` `.gradle` `.gem`
221
+ > 🔒 `.ssh` `.gnupg` `.docker` `.zsh_sessions` `.cargo` `.gradle` `.gem`
222
222
 
223
223
  ### `<project>/.bxignore`
224
224
 
package/dist/bx.js CHANGED
@@ -929,7 +929,6 @@ function resolveAppPath(app) {
929
929
  //#endregion
930
930
  //#region src/profile.ts
931
931
  const PROTECTED_DOTDIRS = [
932
- ".Trash",
933
932
  ".ssh",
934
933
  ".gnupg",
935
934
  ".docker",
@@ -1555,9 +1554,12 @@ function printDryRunTree({ home, blockedDirs, ignoredPaths, readOnlyDirs, workDi
1555
1554
  console.log(`\n${RED}✖${RESET} = denied ${YELLOW}◉${RESET} = read-only ${GREEN}✔${RESET} = read-write\n`);
1556
1555
  }
1557
1556
  //#endregion
1557
+ //#region package.json
1558
+ var version = "0.11.0";
1559
+ //#endregion
1558
1560
  //#region src/index.ts
1559
1561
  const __dirname = dirname(fileURLToPath(import.meta.url));
1560
- const VERSION = typeof __VERSION__ !== "undefined" ? __VERSION__ : "dev";
1562
+ const VERSION = version;
1561
1563
  if (process$1.argv.includes("--version") || process$1.argv.includes("-v")) {
1562
1564
  console.log(`bx ${VERSION}`);
1563
1565
  process$1.exit(0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bx-mac",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "description": "Sandbox any macOS app — only your project directory stays accessible",
5
5
  "type": "module",
6
6
  "bin": {