tinacms / gatsby-starter-tinacms

Gatsby starter for creating a blog with TinaCMS
MIT License
93 stars 14 forks source link

Gatsby plugin tinacms is borken? #1

Closed dingyi closed 4 years ago

dingyi commented 4 years ago

It says:

error An unexpected error occurred: "https://registry.yarnpkg.com/@tinacms/gatsby-tinacms-remark/-/gatsby-tinacms-remark-0.3.0.tgz: Request failed \"404 Not Found\"".

when I install this starter.

fabianderijk commented 4 years ago

I've got almost the same issue, I get the error:

npm ERR! 404 Not Found: @tinacms/gatsby-tinacms-git@^0.2.1

mckelveygreg commented 4 years ago

I replaced those packages with the un-namespaced ones documented in the manual setup docs. https://tinacms.org/docs/gatsby/manual-setup and the next page https://tinacms.org/docs/gatsby/markdown

    "@tinacms/gatsby-plugin-tinacms": "^0.1.4",
    "@tinacms/gatsby-tinacms-git": "^0.2.1",
    "@tinacms/gatsby-tinacms-remark": "^0.3.0",

to

    "gatsby-plugin-tinacms": "^0.1.7",
    "gatsby-tinacms-git": "^0.2.4",
    "gatsby-tinacms-remark": "^0.3.4",
fabianderijk commented 4 years ago

Thanks. I'll try that as well!

c0r5a1r commented 4 years ago

I replaced those packages with the un-namespaced ones documented in the manual setup docs. https://tinacms.org/docs/gatsby/manual-setup and the next page https://tinacms.org/docs/gatsby/markdown

    "@tinacms/gatsby-plugin-tinacms": "^0.1.4",
    "@tinacms/gatsby-tinacms-git": "^0.2.1",
    "@tinacms/gatsby-tinacms-remark": "^0.3.0",

to

    "gatsby-plugin-tinacms": "^0.1.7",
    "gatsby-tinacms-git": "^0.2.4",
    "gatsby-tinacms-remark": "^0.3.4",

It helps me.

spbyrne commented 4 years ago

This is fixed with the remove namespaced @tinacms PR.

ncphillips commented 4 years ago

🤦‍♂️knew I was missed the renaming somewhere. Thanks for the heads up everyone!