Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Should I bundle up node_modules into ZXP package for Premiere Pro CEP Extension?

Explorer ,
Mar 26, 2020 Mar 26, 2020

I'm developing an Extension for Premiere Pro in CEP. I need an npm module for it. Should I include the installed module in "node_modules" in the final zxp package? Or should I assume that "npm install" will be run when people install my extension and therefore the required module will be installed on the end user's system?

 

Note that this module installs windows executable exe files (it's "dist-exiftool").

TOPICS
SDK
810
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , Apr 01, 2020 Apr 01, 2020

Any changes within your extension's directory will invalidate its signature; I'd recommend including everything necessary in the extension, _before_ signing and distributing. 

Translate
Adobe Employee ,
Apr 01, 2020 Apr 01, 2020

Any changes within your extension's directory will invalidate its signature; I'd recommend including everything necessary in the extension, _before_ signing and distributing. 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 02, 2020 Apr 02, 2020
LATEST

npm install will not be run on your user's machine, you need to bundle any dependencies, sign, and then deliver.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines