1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

Merge pull request #276 from oceanprotocol/feature/bump

Bump submodules & packages
This commit is contained in:
Troy McConaghy 2019-06-20 13:58:43 +02:00 committed by GitHub
commit 1351837e6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 20 additions and 20 deletions

2
external/dev-ocean vendored

@ -1 +1 @@
Subproject commit a9ae223cfcc41a272e91f0b251a1d0142f025c87
Subproject commit e2a5a37a7bb57a5d548000d12886ad63fb7ab340

2
external/squid-js vendored

@ -1 +1 @@
Subproject commit 325e339b5615b3bdc6539b43c83f5c6a54c82688
Subproject commit 497867854eff2c040934b7fd350383d6f16eefd2

View File

@ -243,6 +243,7 @@ exports.createPages = ({ graphql, actions }) => {
'ocean/OceanAccounts',
'ocean/OceanAssets',
'ocean/OceanAgreements',
'ocean/OceanVersions',
'ocean/Account',
'ocean/DID',
'ocean/ServiceAgreements/ServiceAgreement',

View File

@ -26,29 +26,29 @@
"@oceanprotocol/art": "^2.2.0",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"gatsby": "^2.8.5",
"gatsby-image": "^2.1.2",
"gatsby": "^2.9.11",
"gatsby-image": "^2.1.4",
"gatsby-plugin-catch-links": "^2.0.15",
"gatsby-plugin-google-analytics": "^2.0.20",
"gatsby-plugin-google-analytics": "^2.0.21",
"gatsby-plugin-manifest": "^2.1.1",
"gatsby-plugin-offline": "^2.1.1",
"gatsby-plugin-offline": "^2.1.3",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sass": "^2.0.11",
"gatsby-plugin-sharp": "^2.1.3",
"gatsby-plugin-sass": "^2.0.13",
"gatsby-plugin-sharp": "^2.1.9",
"gatsby-plugin-sitemap": "^2.1.0",
"gatsby-plugin-svgr": "^2.0.2",
"gatsby-remark-autolink-headers": "^2.0.16",
"gatsby-remark-autolink-headers": "^2.0.18",
"gatsby-remark-component": "^1.1.3",
"gatsby-remark-copy-linked-files": "^2.0.13",
"gatsby-remark-embed-video": "^1.7.1",
"gatsby-remark-github": "^2.0.0",
"gatsby-remark-images": "^3.0.14",
"gatsby-remark-prismjs": "^3.2.10",
"gatsby-remark-images": "^3.0.16",
"gatsby-remark-prismjs": "^3.2.11",
"gatsby-remark-responsive-iframe": "^2.1.1",
"gatsby-remark-smartypants": "^2.0.9",
"gatsby-source-filesystem": "^2.0.38",
"gatsby-source-graphql": "^2.0.18",
"gatsby-transformer-remark": "^2.3.12",
"gatsby-source-filesystem": "^2.0.43",
"gatsby-source-graphql": "^2.0.19",
"gatsby-transformer-remark": "^2.4.0",
"gatsby-transformer-sharp": "^2.1.21",
"gatsby-transformer-xml": "^2.0.10",
"gatsby-transformer-yaml": "^2.1.12",
@ -65,7 +65,7 @@
"remark-react": "^5.0.1",
"slugify": "^1.3.4",
"smoothscroll-polyfill": "^0.4.4",
"swagger-client": "^3.8.25"
"swagger-client": "^3.9.0"
},
"devDependencies": {
"@svgr/webpack": "^4.3.0",
@ -78,9 +78,9 @@
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"ora": "^3.4.0",
"prettier": "^1.18.0",
"prettier": "^1.18.2",
"prettier-stylelint": "^0.4.2",
"stylelint": "^10.0.1",
"stylelint": "^10.1.0",
"stylelint-config-bigchaindb": "^1.2.2",
"stylelint-config-css-modules": "^1.4.0",
"stylelint-config-standard": "^18.3.0",

View File

@ -54,8 +54,7 @@ const generateJson = () => {
title: 'Squid-js',
description,
version,
sourceUrl:
'https://github.com/oceanprotocol/squid-js/tree/develop/src/'
sourceUrl: 'https://github.com/oceanprotocol/squid-js/blob/master/'
},
...jsonOrig
}

View File

@ -4,7 +4,7 @@ export const cleanTypedocData = (data, useClasses) => {
const cleanData = nodes
.map(node => ({
...node,
name: node.name.replace(/"/g, ''),
name: node.name.replace(/"/g, '').replace('src/', ''),
child: node.children && node.children[0]
}))
.filter(({ name }) => (useClasses || []).includes(name))