Skip to content

Commit

Permalink
Move BlueMapVue and BlueMapWeb into the main repo
Browse files Browse the repository at this point in the history
  • Loading branch information
TBlueF committed Dec 18, 2022
1 parent 7918035 commit 6642c11
Show file tree
Hide file tree
Showing 79 changed files with 20,674 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[submodule "BlueMapAPI"]
path = BlueMapAPI
url = https://github.com/BlueMap-Minecraft/BlueMapAPI
[submodule "BlueMapVue"]
path = BlueMapCommon/BlueMapVue
url = https://github.com/BlueMap-Minecraft/BlueMapVue
1 change: 0 additions & 1 deletion BlueMapCommon/BlueMapVue
Submodule BlueMapVue deleted from ad27cb
27 changes: 27 additions & 0 deletions BlueMapCommon/BlueMapVue/.github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Node.js CI

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x]

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- uses: actions/upload-artifact@v2
with:
name: distribution
path: dist/*
23 changes: 23 additions & 0 deletions BlueMapCommon/BlueMapVue/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.DS_Store
node_modules
/dist


# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
1 change: 1 addition & 0 deletions BlueMapCommon/BlueMapVue/BlueMapWeb
Submodule BlueMapWeb added at b5cd89
22 changes: 22 additions & 0 deletions BlueMapCommon/BlueMapVue/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
The MIT License (MIT)

Copyright (c) Blue <https://www.bluecolored.de>
Copyright (c) contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
24 changes: 24 additions & 0 deletions BlueMapCommon/BlueMapVue/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# bluemapvue

## Project setup
```
npm install
```

### Compiles and hot-reloads for development
```
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Lints and fixes files
```
npm run lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
5 changes: 5 additions & 0 deletions BlueMapCommon/BlueMapVue/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}
Loading

0 comments on commit 6642c11

Please sign in to comment.