You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
source/cli.tsx:17:4 - error TS2345: Argument of type '{ flags: { name: { type: "string"; }; }; }' is not assignable to parameter of type 'Options<{ name: { type: "string"; }; }>'.
Property 'importMeta' is missing in type '{ flags: { name: { type: "string"; }; }; }' but required in type 'Options<{ name: { type: "string"; }; }>'.
node_modules/meow/index.d.ts:33:11
33 readonly importMeta: ImportMeta;
~~~~~~~~~~
'importMeta' is declared here.
Found 1 error.
at makeError (C:\Users\myUserName\AppData\Local\npm-cache\_npx\cc9fa0209c2baa81\node_modules\execa\index.js:174:9)
at C:\Users\myUserName\AppData\Local\npm-cache\_npx\cc9fa0209c2baa81\node_modules\execa\index.js:278:16
at processTicksAndRejections (node:internal/process/task_queues:96:5)
at async Task.task (C:\Users\myUserName\AppData\Local\npm-cache\_npx\cc9fa0209c2baa81\node_modules\create-ink-app\index.js:135:6)
`
Environment: Windows 10, NodeJS 16.5.0
The text was updated successfully, but these errors were encountered:
Following the instructions fails with the following error
`
myUserName@pc MINGW64 /c/work/mainFolder/testing
$ mkdir cli-project
myUserName@pc MINGW64 /c/work/mainFolder/testing
$ cd cli-project/
myUserName@pc MINGW64 /c/work/mainFolder/testing/cli-project
$ npx create-ink-app --typescript
Need to install the following packages:
create-ink-app
Ok to proceed? (y) y
npm WARN deprecated [email protected]: Please see https://github.com/lydell/urix#deprecated
npm WARN deprecated [email protected]: https://github.com/lydell/resolve-url#deprecated
√ Copy files
√ Install dependencies
× Link executable
→ Found 1 error.
Error: Command failed: npm run build
source/cli.tsx:17:4 - error TS2345: Argument of type '{ flags: { name: { type: "string"; }; }; }' is not assignable to parameter of type 'Options<{ name: { type: "string"; }; }>'.
Property 'importMeta' is missing in type '{ flags: { name: { type: "string"; }; }; }' but required in type 'Options<{ name: { type: "string"; }; }>'.
17 `, {
~
18 flags: {
~~~~~~~~~
...
22 }
~~
23 });
~
node_modules/meow/index.d.ts:33:11
33 readonly importMeta: ImportMeta;
~~~~~~~~~~
'importMeta' is declared here.
Found 1 error.
`
Environment: Windows 10, NodeJS 16.5.0
The text was updated successfully, but these errors were encountered: