Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
node_modules

src/.vuepress/dist
src/.vitepress/cache
src/.vitepress/dist
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
# BIMData Documentation

[VuePress](https://vuepress.vuejs.org/) based documentation.
BIMData documentation build with [VitePress](https://vitepress.dev/).

## Installation

```bash
git clone git@github.com:bimdata/documentation.git
cd documentation
npm install
```

## Development

```bash
npm run dev
```

The doc should be up and running on: http://localhost:5173/
24,064 changes: 4,191 additions & 19,873 deletions package-lock.json

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "documentation",
"version": "1.0.0",
"version": "2.0.0",
"description": "BIMData documentation",
"type": "module",
"main": "index.js",
"authors": {
"name": "BIMData",
"email": "support@bimdata.io"
},
"repository": "https://github.com/bimdata/documentation",
"scripts": {
"dev": "NODE_OPTIONS=--openssl-legacy-provider vuepress dev src",
"build": "vuepress build src"
"dev": "vitepress dev src",
"build": "vitpress build src"
},
"license": "MIT",
"devDependencies": {
"@bimdata/design-system": "0.3.20",
"sass": "^1.79.3",
"sass-loader": "^10.5.2",
"swagger-ui": "^5.32.2",
"swagger-ui-dist": "4.1.3",
"vuepress": "^1.9.10"
"@bimdata/design-system": "2.4.1",
"sass-embedded": "^1.100.0",
"swagger-ui": "^5.32.6",
"swagger-ui-dist": "^5.32.6",
"vitepress": "^1.6.4"
}
}
Loading