Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

Commit ea73f25

Browse files
author
Cole J Calamos
committed
Updated to correct resolve in README
1 parent 3c42686 commit ea73f25

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ In `gatsby-config.js`:
4444
module.exports = {
4545
plugins: [
4646
{
47-
resolve: `gatsby-source-googlemaps-static`,
47+
resolve: `@ccalamos/gatsby-source-googlemaps-static`,
4848
options: {
4949
key: `YOUR_GOOGLE_MAPS_STATIC_API_KEY`,
5050
center: `LATITUDE,LONGITUDE || CITY,REGION`,
@@ -67,7 +67,7 @@ The configuration options for this plugin are currently an expansive set of the
6767
module.exports = {
6868
plugins: [
6969
{
70-
resolve: `gatsby-source-googlemaps-static`,
70+
resolve: `@ccalamos/gatsby-source-googlemaps-static`,
7171
options: {
7272
key: `YOUR_GOOGLE_MAPS_STATIC_API_KEY`,
7373
center: `LATITUDE,LONGITUDE || CITY,REGION`,
@@ -171,7 +171,7 @@ _A Very Simple Configuration Example_
171171
module.exports = {
172172
plugins: [
173173
{
174-
resolve: "gatsby-source-googlemaps-static",
174+
resolve: "@ccalamos/gatsby-source-googlemaps-static",
175175
options: {
176176
key: process.env.GOOGLE_MAPS_STATIC_API_KEY,
177177
center: "41.8781,-87.6298",
@@ -190,7 +190,7 @@ _Another Very Simple Configuration Example_
190190
module.exports = {
191191
plugins: [
192192
{
193-
resolve: "gatsby-source-googlemaps-static",
193+
resolve: "@ccalamos/gatsby-source-googlemaps-static",
194194
options: {
195195
key: process.env.GOOGLE_MAPS_STATIC_API_KEY,
196196
center: "Chicago, IL",
@@ -209,7 +209,7 @@ _An Implicit Mapping Configuration Example_
209209
module.exports = {
210210
plugins: [
211211
{
212-
resolve: `gatsby-source-googlemaps-static`,
212+
resolve: `@ccalamos/gatsby-source-googlemaps-static`,
213213
options: {
214214
key: process.env.GOOGLE_MAPS_STATIC_API_KEY,
215215
paths: [
@@ -240,7 +240,7 @@ _Signature Configuration Example (Using API KEY)_
240240
module.exports = {
241241
plugins: [
242242
{
243-
resolve: `gatsby-source-googlemaps-static`,
243+
resolve: `@ccalamos/gatsby-source-googlemaps-static`,
244244
options: {
245245
key: process.env.GOOGLE_MAPS_STATIC_API_KEY,
246246
secret: process.env.GOOGLE_MAPS_STATIC_SECRET,
@@ -260,7 +260,7 @@ _Signature Configuration Example (Using Client ID)_
260260
module.exports = {
261261
plugins: [
262262
{
263-
resolve: `gatsby-source-googlemaps-static`,
263+
resolve: `@ccalamos/gatsby-source-googlemaps-static`,
264264
options: {
265265
clientID: process.env.GOOGLE_MAPS_STATIC_CLIENT_ID,
266266
secret: process.env.GOOGLE_MAPS_STATIC_SECRET,
@@ -280,7 +280,7 @@ _Query Configuration Example_
280280
module.exports = {
281281
plugins: [
282282
{
283-
resolve: `gatsby-source-googlemaps-static`,
283+
resolve: `@ccalamos/gatsby-source-googlemaps-static`,
284284
options: {
285285
key: process.env.GOOGLE_MAPS_STATIC_API_KEY,
286286
center: `Chicago, IL`,
@@ -300,7 +300,7 @@ _Multiple Maps Example_
300300
module.exports = {
301301
plugins: [
302302
{
303-
resolve: `gatsby-source-googlemaps-static`,
303+
resolve: `@ccalamos/gatsby-source-googlemaps-static`,
304304
options: {
305305
key: process.env.GOOGLE_MAPS_STATIC_API_KEY,
306306
styles: [

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ccalamos/gatsby-source-googlemaps-static",
33
"description": "Gatsby source plugin for Google Maps Static API",
4-
"version": "1.3.0",
4+
"version": "1.3.1",
55
"author": "Cole Calamos <cole@colejcalamos.com>",
66
"bugs": {
77
"url": "https://github.com/ccalamos/gatsby-source-googlemaps-static/issues"
@@ -15,7 +15,7 @@
1515
"maps",
1616
"static"
1717
],
18-
"homepage": "https://yarnpkg.com/package/@ccalamos/gatsby-source-googlemaps-static",
18+
"homepage": "https://www.gatsbyjs.org/packages/@ccalamos/gatsby-source-googlemaps-static/",
1919
"repository": {
2020
"type": "git",
2121
"url": "https://github.com/ccalamos/gatsby-source-googlemaps-static.git"

0 commit comments

Comments
 (0)