Shopify / graphql-js-schema

Transforms the JSON representation of a GraphQL schema into a set of ES6 type modules
MIT License
35 stars 12 forks source link

Use yarn as a package manager #19

Closed lshapton closed 7 years ago

lshapton commented 7 years ago
minasmart commented 7 years ago

This is good! The only thing I would do, just to verify the lock file. do:

rm -rf node_modules
mv yarn.lock yarn.lock.old
yarn install
diff yarn.lock yarn.lock.old

If there's no diff, you're good. If there is, just remove the old lock file, and swap it out for the new one. Sometimes artifacts hang around when you're transitioning from npm to yarn and this will save us 😄

lshapton commented 7 years ago

@minasmart one small diff, adding the new lock file.