Skip to content

Commit

Permalink
chore(config): update pkg version (#14)
Browse files Browse the repository at this point in the history
* fix: stale lock

* docs: use namespaced pkg name
  • Loading branch information
notrab committed Apr 7, 2020
1 parent 7b33cb1 commit 34626d2
Show file tree
Hide file tree
Showing 4 changed files with 267 additions and 580 deletions.
2 changes: 1 addition & 1 deletion gatsby-source-chec/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# gatsby-source-chec
# @chec/gatsby-source-chec

🛍 Gatsby plugin for sourcing products, categories and merchant info from your Chec store

Expand Down
4 changes: 2 additions & 2 deletions gatsby-source-chec/gatsby/node/sourceNodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const sourceNodes = async (
) => {
if (!publicKey)
return reporter.panicOnBuild(
`gatsby-source-chec: You must provide a 'publicKey' for your Chec store`
`@chec/gatsby-source-chec: You must provide a 'publicKey' for your Chec store`
);

const { createNode } = actions;
Expand Down Expand Up @@ -36,7 +36,7 @@ const sourceNodes = async (

return newCollection;
} catch (err) {
reporter.panicOnBuild('gatsby-source-chec', err);
reporter.panicOnBuild('@chec/gatsby-source-chec', err);
}
};

Expand Down
2 changes: 1 addition & 1 deletion gatsby-source-chec/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chec/gatsby-source-chec",
"version": "0.0.0-semantic-release",
"version": "0.0.0",
"description": "Source Chec commerce data for your Gatsby store.",
"main": "index.js",
"license": "BSD-3-Clause",
Expand Down
Loading

0 comments on commit 34626d2

Please sign in to comment.