-
Notifications
You must be signed in to change notification settings - Fork 557
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
Problem with app scaffold #3630
Comments
The "=**" issue should have been fixed with: #3592 I'll see if there was a regression of sorts. Added a PR to remove the unnecessary type import here: #3631
The user is notified of this when running npm run dev. The postinstall script (https://github.com/ignite/web/blob/develop/packages/react-template/postinstall.cjs ) will run npm install for the ts-client to ensure its own deps are present, while the prepare script (when running npm run dev: https://github.com/ignite/web/blob/develop/packages/react-template/prepare.cjs) lets you know that you're running with a local version of the ts-client that should eventually be published and the entry in package.json updated to reflect that.
|
Describe the bug
This is a three part problem
useIbcApplicationsTransferV1
are riddled with errors due to=**
being generated with thehash
,trace
anddenom
variables. Also, there is a left over unused import ofvue
(considering it's not part of the dependencies).scaffolding a vue application also results in the same errors above
the generated
ts-client
for the client instance is generated outside of the scaffolded app. Therefore, it either needs to be linked usingnpm link
(which needs to be done manually) or you transfer thets-client
directory that has been generated into the scaffolded app directory. If not done automatically, maybe good to add in docs for this step.To reproduce
Steps to reproduce the behavior:
npm install
to get the depsnpm run dev
What version are you using?
Ignite CLI version: v0.27.1
The text was updated successfully, but these errors were encountered: