Skip to content

Commit 2006f0f

Browse files
committed
2 parents 9e8c761 + d26e3fb commit 2006f0f

File tree

26 files changed

+127
-102
lines changed

26 files changed

+127
-102
lines changed

docusaurus/docusaurus.config.js

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,31 @@ const config = {
148148
theme: lightCodeTheme,
149149
darkTheme: darkCodeTheme,
150150
},
151+
// @see https://docusaurus.io/fr/docs/search
152+
algolia: {
153+
// L'ID de l'application fourni par Algolia
154+
appId: 'M8OIENR0HJ',
155+
156+
// Clé d'API publique : il est possible de la committer en toute sécurité
157+
apiKey: '7870e4c4bae50c2173d89f7771e260d5',
158+
159+
indexName: 'vulcan',
160+
161+
// Facultatif : voir la section doc ci-dessous
162+
contextualSearch: true,
163+
164+
// Facultatif : Spécifiez les domaines où la navigation doit se faire par window.location au lieu de history.push. Utile lorsque notre configuration Algolia explore plusieurs sites de documentation et que nous voulons naviguer vers eux avec window.location.href.
165+
//externalUrlRegex: 'external\\.com|domain\\.com',
166+
167+
// Facultatif : paramètres de recherche de Algolia
168+
//searchParameters: {},
169+
170+
// Facultatif : chemin pour la page de recherche qui est activée par défaut (`false` pour le désactiver)
171+
searchPagePath: 'search',
172+
173+
//... autres paramètres d'Algolia
174+
},
175+
151176
}),
152177
};
153178

docusaurus/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vulcanjs/docusaurus",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.7.0",
2+
"version": "0.7.1",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"packages": [

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vulcanjs/core",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"main": "dist/index.js",
55
"files": [
66
"dist/"
@@ -33,7 +33,7 @@
3333
"access": "public"
3434
},
3535
"dependencies": {
36-
"@vulcanjs/utils": "^0.7.0",
36+
"@vulcanjs/utils": "^0.7.1",
3737
"debug": "^4.3.1",
3838
"lodash": "^4.17.21"
3939
}

packages/crud/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vulcanjs/crud",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"main": "./dist/index.js",
55
"files": [
66
"dist/"
@@ -23,11 +23,11 @@
2323
"homepage": "https://github.com/VulcanJS/vulcan-npm#readme",
2424
"license": "MIT",
2525
"dependencies": {
26-
"@vulcanjs/core": "^0.7.0",
27-
"@vulcanjs/model": "^0.7.0",
28-
"@vulcanjs/permissions": "^0.7.0",
29-
"@vulcanjs/schema": "^0.7.0",
30-
"@vulcanjs/utils": "^0.7.0",
26+
"@vulcanjs/core": "^0.7.1",
27+
"@vulcanjs/model": "^0.7.1",
28+
"@vulcanjs/permissions": "^0.7.1",
29+
"@vulcanjs/schema": "^0.7.1",
30+
"@vulcanjs/utils": "^0.7.1",
3131
"debug": "^4.3.1",
3232
"lodash": "^4.17.21"
3333
},

packages/eslint-vulcan-internal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"name": "eslint-plugin-vulcan-internal",
33
"description": "A plugin for our custom liniting rules",
44
"private": true,
5-
"version": "0.7.0",
5+
"version": "0.7.1",
66
"main": "index.js"
77
}

packages/graphql/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vulcanjs/graphql",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"main": "./dist/index.js",
55
"files": [
66
"dist/"
@@ -27,12 +27,12 @@
2727
"homepage": "https://github.com/VulcanJS/vulcan-npm#readme",
2828
"license": "MIT",
2929
"dependencies": {
30-
"@vulcanjs/crud": "^0.7.0",
31-
"@vulcanjs/i18n": "^0.7.0",
32-
"@vulcanjs/model": "^0.7.0",
33-
"@vulcanjs/permissions": "^0.7.0",
34-
"@vulcanjs/schema": "^0.7.0",
35-
"@vulcanjs/utils": "^0.7.0",
30+
"@vulcanjs/crud": "^0.7.1",
31+
"@vulcanjs/i18n": "^0.7.1",
32+
"@vulcanjs/model": "^0.7.1",
33+
"@vulcanjs/permissions": "^0.7.1",
34+
"@vulcanjs/schema": "^0.7.1",
35+
"@vulcanjs/utils": "^0.7.1",
3636
"apollo-datasource": "^3.3.1",
3737
"debug": "^4.3.1",
3838
"deepmerge": "^4.2.2",

packages/i18n/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vulcanjs/i18n",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "Vulcan i18n helpers",
55
"main": "./dist/index.js",
66
"files": [
@@ -28,8 +28,8 @@
2828
"author": "",
2929
"license": "MIT",
3030
"dependencies": {
31-
"@vulcanjs/schema": "^0.7.0",
32-
"@vulcanjs/utils": "^0.7.0",
31+
"@vulcanjs/schema": "^0.7.1",
32+
"@vulcanjs/utils": "^0.7.1",
3333
"prop-types": "^15.7.2",
3434
"simpl-schema": "^1.12.0"
3535
},

packages/mdx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vulcanjs/mdx",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "Vulcan MDX (Markdown + JSX) helpers",
55
"main": "./dist/index.js",
66
"files": [

packages/meteor-legacy/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vulcanjs/meteor-legacy",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "Vulcan Meteor bindings",
55
"main": "./dist/index.js",
66
"files": [
@@ -27,7 +27,7 @@
2727
"url": "https://github.com/VulcanJS/vulcan-npm/issues"
2828
},
2929
"dependencies": {
30-
"@vulcanjs/graphql": "^0.7.0",
30+
"@vulcanjs/graphql": "^0.7.1",
3131
"lodash": "^4.17.21"
3232
},
3333
"peerDependencies": {

0 commit comments

Comments
 (0)