-
Notifications
You must be signed in to change notification settings - Fork 310
Description
Screenshot
Description
If you follow the documentation, when installing npm install graffle
or npm add graffle graphql
there is a problem - version 0.0.0 is installed, which does not contain any code
Reproduction Steps/Repo Link
in CMD
npm init
npm add graffle graphql
and in my package-lock
{
"name": "asdf",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"node_modules/graffle": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/graffle/-/graffle-0.0.0.tgz",
"integrity": "sha512-sIChCCzbsLVnDtdr9D5mUF0bvPgEkwDgdR61Q+601FcUefk/2fUV13m8qPKfWKOux78YAxd3GU25fk52k1y/Bg==",
"license": "ISC"
},
"node_modules/graphql": {
"version": "16.10.0",
"resolved": "https://registry.npmjs.org/graphql/-/graphql-16.10.0.tgz",
"integrity": "sha512-AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ==",
"license": "MIT",
"engines": {
"node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0"
}
}
}
}