This repository was archived by the owner on Dec 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
jerome
committed
Sep 4, 2019
1 parent
28a5d09
commit f2d1379
Showing
14 changed files
with
68 additions
and
257 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
module.exports = require('ocular-gatsby/gatsby-browser'); | ||
module.exports.wrapPageElement = require('ocular-gatsby/gatsby-browser').wrapPageElement; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
const {getGatsbyConfig, registerReactComponent} = require('ocular-gatsby/api'); | ||
const {getGatsbyConfig} = require('ocular-gatsby/api'); | ||
|
||
const config = require('./ocular-config'); | ||
|
||
module.exports = getGatsbyConfig(config); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
module.exports = require('ocular-gatsby/gatsby-ssr'); | ||
module.exports.wrapPageElement = require('ocular-gatsby/gatsby-ssr').wrapPageElement; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,24 @@ | ||
{ | ||
"description": "A website built with ocular", | ||
"license": "MIT", | ||
"keywords": [ | ||
"ocular" | ||
], | ||
"name": "viewport-mercator-project", | ||
"version": "1.0.0", | ||
"description": "Utilities for working with Web Mercator Projections", | ||
"main": "index.js", | ||
"scripts": { | ||
"clean": "rm -rf ./.cache ./public", | ||
"develop": "gatsby develop", | ||
"build": "gatsby build", | ||
"serve": "gatsby serve" | ||
"start": "yarn clean && yarn develop", | ||
"build": "yarn clean && yarn clean-public && gatsby build", | ||
"clean": "rm -rf ./.cache", | ||
"clean-public": "rm -rf ./public", | ||
"develop": "gatsby develop --port=801", | ||
"serve": "gatsby serve", | ||
"deploy": "NODE_DEBUG=gh-pages gh-pages -d public" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"dependencies": { | ||
"gatsby": "2.0.85", | ||
"ocular-gatsby": "1.0.0-alpha.4" | ||
}, | ||
"devDependencies": {} | ||
"gatsby": "^2.15.6", | ||
"ocular-gatsby": "^1.0.0", | ||
"react": "^16.9.0", | ||
"react-dom": "^16.9.0" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.