Skip to content

Commit fae4361

Browse files
authored
Merge pull request #4 from njt1982/rebuild
Rebuild site in VueJS
2 parents a04ccbc + 1c00400 commit fae4361

File tree

151 files changed

+9973
-25539
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+9973
-25539
lines changed

.browserslistrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 1%
2+
last 2 versions
3+
not dead

.eslintrc.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
extends: ["plugin:vue/essential", "eslint:recommended", "@vue/prettier"],
7+
parserOptions: {
8+
parser: "babel-eslint"
9+
},
10+
rules: {
11+
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
12+
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off"
13+
}
14+
};

.github/workflows/deploy.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Build and Deploy site
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v1
15+
- name: Install
16+
uses: borales/actions-yarn@v2.0.0
17+
with:
18+
cmd: install
19+
- name: Build
20+
uses: borales/actions-yarn@v2.0.0
21+
with:
22+
cmd: build
23+
- name: Install SSH Client
24+
uses: webfactory/ssh-agent@v0.2.0
25+
with:
26+
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
27+
- name: Deploy
28+
uses: JamesIves/github-pages-deploy-action@releases/v3
29+
with:
30+
SSH: true
31+
BRANCH: gh-pages
32+
FOLDER: 'dist'
33+
CLEAN: true

.gitignore

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
1-
.bundle
2-
_site
3-
.sass-cache
4-
.jekyll-metadata
5-
.env
1+
.DS_Store
2+
node_modules
3+
/dist
64

5+
# local env files
6+
.env.local
7+
.env.*.local
8+
9+
# Log files
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
# Editor directories and files
16+
.idea
17+
.vscode
18+
*.suo
19+
*.ntvs*
20+
*.njsproj
21+
*.sln
22+
*.sw?

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "PrismarineJS/minecraft-assets"]
2+
path = PrismarineJS/minecraft-assets
3+
url = git@github.com:PrismarineJS/minecraft-assets.git
4+
[submodule "PrismarineJS/minecraft-data"]
5+
path = PrismarineJS/minecraft-data
6+
url = git@github.com:PrismarineJS/minecraft-data.git

404.html

Lines changed: 0 additions & 24 deletions
This file was deleted.

Gemfile

Lines changed: 0 additions & 49 deletions
This file was deleted.

0 commit comments

Comments
 (0)