Skip to content

Commit

Permalink
vue create ss13stats
Browse files Browse the repository at this point in the history
  • Loading branch information
Gesugao-san committed Jun 8, 2022
1 parent e13cc35 commit 603e5af
Show file tree
Hide file tree
Showing 16 changed files with 19,988 additions and 18 deletions.
67 changes: 58 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig

# Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,macos,linux,node
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,macos,linux,node
# Created by https://www.toptal.com/developers/gitignore/api/vuejs,vue,visualstudiocode,node,dotenv,linux,macos,windows
# Edit at https://www.toptal.com/developers/gitignore?templates=vuejs,vue,visualstudiocode,node,dotenv,linux,macos,windows

### dotenv ###
.env

### Linux ###
*~
Expand All @@ -27,7 +30,6 @@
# Icon must end with two \r
Icon


# Thumbnails
._*

Expand All @@ -47,6 +49,10 @@ Network Trash Folder
Temporary Items
.apdisk

### macOS Patch ###
# iCloud generated files
*.icloud

### Node ###
# Logs
logs
Expand Down Expand Up @@ -104,6 +110,9 @@ web_modules/
# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
Expand All @@ -119,10 +128,11 @@ web_modules/
# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test
.env.production
# dotenv environment variable files
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
Expand All @@ -145,6 +155,12 @@ dist
# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

Expand All @@ -171,22 +187,54 @@ dist
# Serverless Webpack directories
.webpack/

# Optional stylelint cache

# SvelteKit build / generate output
.svelte-kit

### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/

# Built Visual Studio Code Extensions
*.vsix

### VisualStudioCode Patch ###
# Ignore all local history of files
.history
.ionide

# Support for Project snippet scope
.vscode/*.code-snippets

# Ignore code-workspaces
*.code-workspace

### Vue ###
# gitignore template for Vue.js projects
#
# Recommended template: Node.gitignore

# TODO: where does this rule come from?
docs/_book

# TODO: where does this rule come from?
test/

### Vuejs ###
# Recommended template: Node.gitignore

dist/
npm-debug.log
yarn-error.log

### Windows ###
# Windows thumbnail cache files
Thumbs.db
Expand All @@ -213,7 +261,8 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk

# End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,macos,linux,node
# End of https://www.toptal.com/developers/gitignore/api/vuejs,vue,visualstudiocode,node,dotenv,linux,macos,windows

# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)

.env.*.local
4 changes: 3 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"recommendations": [
"Gesugao-san.general-purpose-extension-pack",
"gesugao-san.general-purpose-extension-pack",
"jcbuisson.vue",
"dbaeumer.vscode-eslint"
]
}
41 changes: 41 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"group": "build",
"problemMatcher": [ "$eslint-stylish" ],
"label": "npm: build",
"detail": "vue-cli-service build"
},
{
"type": "npm",
"script": "install",
"group": "clean",
"problemMatcher": [ "$eslint-stylish" ],
"label": "npm: install",
"detail": "install dependencies from package"
},
{
"type": "npm",
"script": "lint",
"problemMatcher": [ "$eslint-stylish" ],
"label": "npm: lint",
"detail": "vue-cli-service lint"
},
{
"type": "npm",
"script": "serve",
"problemMatcher": [ "$eslint-stylish" ],
"label": "npm: serve",
"detail": "vue-cli-service serve",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@

<p align="center">
<h2 align="center">
<a href="https://github.com/Gesugao-san/infrastructure-template-repository">Infrastructure</a> template
<a href="https://github.com/SS13HUB/ss13stats">ss13stats</a>
</h2>
<p align="center">
Origin:
<a href="https://github.com/BYOND/infrastructure-template-repository">
BYOND/infrastructure-template-repository
</a>
</p>
</p>

<p align="center">
Expand All @@ -34,7 +28,7 @@
</a>˙
<a href="./../../commits/">
<img alt="[Last Commit]"
src="https://img.shields.io/github/last-commit/Gesugao-san/infrastructure-template-repository"/>
src="https://img.shields.io/github/last-commit/SS13HUB/ss13stats"/>
</a>
</p>

Expand Down
14 changes: 14 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

module.exports = function (api) {
api.cache(true);

const presets = [
'@vue/cli-plugin-babel/preset'
];
const plugins = [];

return {
presets,
plugins
};
}
19 changes: 19 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}
Loading

0 comments on commit 603e5af

Please sign in to comment.