@choochmeque/tauri-apple-extensions 0.2.1 → 0.2.2

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/cli.js CHANGED
@@ -403,7 +403,7 @@ const shareExtension = {
403
403
  base:
404
404
  PRODUCT_BUNDLE_IDENTIFIER: ${extensionBundleId}
405
405
  SKIP_INSTALL: YES
406
- CODE_SIGN_ENTITLEMENTS: ShareExtension/ShareExtension.entitlements
406
+ CODE_SIGN_ENTITLEMENTS: ShareExtension/ShareExtension.entitlements${platform === "macos" ? "\n CODE_SIGN_ALLOW_ENTITLEMENTS_MODIFICATION: YES" : ""}
407
407
  `;
408
408
  // Add the target
409
409
  let modified = addExtensionTarget(projectYml, {
@@ -545,7 +545,7 @@ const program = new Command();
545
545
  program
546
546
  .name("tauri-apple-extensions")
547
547
  .description("Add Apple extensions to Tauri apps")
548
- .version("0.2.1");
548
+ .version("0.2.2");
549
549
  function createPlatformCommand(platform) {
550
550
  const cmd = new Command(platform);
551
551
  cmd.description(`Manage ${platform === "ios" ? "iOS" : "macOS"} extensions`);
package/dist/index.js CHANGED
@@ -401,7 +401,7 @@ const shareExtension = {
401
401
  base:
402
402
  PRODUCT_BUNDLE_IDENTIFIER: ${extensionBundleId}
403
403
  SKIP_INSTALL: YES
404
- CODE_SIGN_ENTITLEMENTS: ShareExtension/ShareExtension.entitlements
404
+ CODE_SIGN_ENTITLEMENTS: ShareExtension/ShareExtension.entitlements${platform === "macos" ? "\n CODE_SIGN_ALLOW_ENTITLEMENTS_MODIFICATION: YES" : ""}
405
405
  `;
406
406
  // Add the target
407
407
  let modified = addExtensionTarget(projectYml, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@choochmeque/tauri-apple-extensions",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Add iOS and macOS extensions to Tauri apps with a single command",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",