-
Notifications
You must be signed in to change notification settings - Fork 29
Closed
Labels
Description
What are you trying to achieve?
- After updating this npm package from v0.4.7 to v0.5.0 the command
npx codecept-ui --app
no longer works
What do you get instead?
Provide console output if related.
⚠️You have to build Vue application by `npm run build`
This appears to be due to the dist
folder missing from the node package.
Testing if dist folder is created locally
- Running the
npm run build
command on this repo causes the following error.
/ Building for production...
ERROR Failed to compile with 1 error
Syntax Error: TypeError: Cannot read properties of undefined (reading 'parseComponent')
- This appears to be due to the updated "vue-template-compiler v2.7.14" in this release not working with the version of vue in the package.lock file. Updating the version of vue 2.7.14 with
npm i [email protected]
fixes this issues and allows it to build the project files into the dist folder. Moving this dist folder into this packages folder in node_modules fixes the above error message.
a-stankevich