Skip to content

Commit

Permalink
fix: adaptation for last npm version
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroerta committed Feb 1, 2022
1 parent 1c2900b commit 95b88bc
Show file tree
Hide file tree
Showing 17 changed files with 78,834 additions and 21,074 deletions.
2 changes: 1 addition & 1 deletion benchmarks/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "benchmarks",
"name": "@morfeo/benchmarks",
"version": "0.0.1",
"private": true,
"author": {
Expand Down
1 change: 0 additions & 1 deletion docs/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Dependencies
/node_modules
/package-lock.json

# Production
/build
Expand Down
2 changes: 1 addition & 1 deletion docs/blog/2021-06-27-welcome.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tags: [welcome, morfeo, design, system]
---

Hello everyone and welcome!
In this blog, we will post updates, news, and tutorials about [morfeo](https://morfeo.dev), but you can always find complete documentation in the [Docs](/docs/Introduction/getting-started) section.
In this blog, we will post updates, news, and tutorials about [morfeo](https://morfeo.dev), but you can always find complete documentation in the [Docs](https://morfeo.dev/docs/Introduction/getting-started) section.

### Work with us

Expand Down
4 changes: 2 additions & 2 deletions docs/blog/2021-08-08-cli-and.presets.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ Today we are going to release 2 new features:
### CLI

We are so happy to announce this new tool because it was one of the first feature we wanted to implement for morfeo!
You can find more info about it [here in the docs](/docs/Features/CLI/morfeo-cli-introduction).
You can find more info about it [here in the docs](https://morfeo.dev/docs/Features/CLI/morfeo-cli-introduction).

### Theme preset

In this [pull-request](https://github.com/VLK-STUDIO/morfeo/pull/62), based on this [issue](https://github.com/VLK-STUDIO/morfeo/issues/45) my friend and colleague [Andrea](https://github.com/andreaSimonePorceddu) introduces a new packages called `@morfeo/preset-default`, this package contains 2 complete themes, one dark and one light, to easily start using morfeo without create a whole complete theme your own.

Checkout more info about the preset [here](/docs/Packages/preset-default).
Checkout more info about the preset [here](https://morfeo.dev/docs/Packages/preset-default).

### Work with us

Expand Down
16 changes: 8 additions & 8 deletions docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,6 @@ module.exports = {
organizationName: 'VLK-STUDIO',
projectName: 'morfeo',
themeConfig: {
gtag: {
trackingID: 'G-Y3GE1C055X',
anonymizeIP: true,
},
googleAnalytics: {
trackingID: 'UA-200678898-1',
anonymizeIP: true,
},
navbar: {
title: '',
logo: {
Expand Down Expand Up @@ -140,6 +132,14 @@ module.exports = {
[
'@docusaurus/preset-classic',
{
gtag: {
trackingID: 'G-Y3GE1C055X',
anonymizeIP: true,
},
googleAnalytics: {
trackingID: 'UA-200678898-1',
anonymizeIP: true,
},
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl: 'https://github.com/VLK-STUDIO/morfeo/edit/main/docs/',
Expand Down
122 changes: 122 additions & 0 deletions docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "morfeo",
"name": "@morfeo/docs",
"version": "0.0.1",
"private": true,
"scripts": {
Expand All @@ -14,20 +14,20 @@
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "^2.0.0-beta.9",
"@docusaurus/preset-classic": "^2.0.0-beta.9",
"@docusaurus/theme-live-codeblock": "^2.0.0-beta.9",
"@docusaurus/theme-search-algolia": "^2.0.0-beta.9",
"@docusaurus/core": "2.0.0-beta.15",
"@docusaurus/preset-classic": "2.0.0-beta.15",
"@docusaurus/theme-live-codeblock": "2.0.0-beta.15",
"@docusaurus/theme-search-algolia": "2.0.0-beta.15",
"@mdx-js/react": "^1.6.21",
"@morfeo/dev-tools": "^0.3.2",
"@morfeo/preset-default": "^0.3.2",
"@morfeo/react": "^0.3.2",
"@svgr/webpack": "^5.5.0",
"clsx": "^1.1.1",
"file-loader": "^6.2.0",
"react": "^17.0.1",
"react": "^17.0.2",
"react-cookie-consent": "^6.2.4",
"react-dom": "^17.0.1",
"react-dom": "^17.0.2",
"url-loader": "^4.1.1"
},
"browserslist": {
Expand Down
9 changes: 2 additions & 7 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
{
"packages": ["packages/*"],
"version": "0.4.2",
"command": {
"bootstrap": {
"npmClientArgs": ["--legacy-peer-deps"]
}
}
"packages": ["packages/*", "docs"],
"version": "0.4.2"
}
Loading

0 comments on commit 95b88bc

Please sign in to comment.