-
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dist/manifest.json missing #1
Comments
uxp-starter-react/package.json Lines 7 to 8 in e161e30
Would you mind trying again and letting me know what the output was from Thinking maybe the wording here could be updated to be more clear about the requirements of a manifest.json file and how to generate it. |
I cloned and tried again to run: npm install
[UXP-STARTER-REACT] First time manifest generation... [Error: ENOENT: no such file or directory, open 'E:\E:\Develop\Photoshop\UXP\uxp-starter-react\plugin\manifest.json.ejs'] { npm ERR! A complete log of this run can be found in: I don't know what generates the wrong path: 'E:\E:\Develop\Photoshop\UXP\uxp-starter-react\plugin\manifest.json.ejs' but E:\E:\ is definitely wrong |
First Windows tests! This is the line that is resolving the path. uxp-starter-react/scripts/install.mjs Line 14 in e161e30
Looks like this is expected. The leading '/' needs to be stripped. Should be a quick change, and if it works an easy PR! |
It works now. `// const root = path.dirname(new URL(import.meta.url).pathname); const root = path.parse(import.meta.url).dir.replace('file:///', '');` |
Hi,
After compilation (npm run watch) manifest.json missing from the dist folder.
Workaround: copy manifest.json.ejs to manifest.json
Thx
Karoly
The text was updated successfully, but these errors were encountered: