From a3c783fbbb842420cde51da9f905a24c6b08deb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20G=C3=B6tz?= Date: Sun, 1 Apr 2018 17:34:37 +0200 Subject: [PATCH] init --- basta/.editorconfig | 9 +++++++++ basta/.gitignore | 14 ++++++++++++++ basta/.postcssrc.js | 10 ++++++++++ basta/README.md | 21 +++++++++++++++++++++ 4 files changed, 54 insertions(+) create mode 100644 basta/.editorconfig create mode 100644 basta/.gitignore create mode 100644 basta/.postcssrc.js create mode 100644 basta/README.md diff --git a/basta/.editorconfig b/basta/.editorconfig new file mode 100644 index 0000000..9d08a1a --- /dev/null +++ b/basta/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true diff --git a/basta/.gitignore b/basta/.gitignore new file mode 100644 index 0000000..541a820 --- /dev/null +++ b/basta/.gitignore @@ -0,0 +1,14 @@ +.DS_Store +node_modules/ +/dist/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln diff --git a/basta/.postcssrc.js b/basta/.postcssrc.js new file mode 100644 index 0000000..eee3e92 --- /dev/null +++ b/basta/.postcssrc.js @@ -0,0 +1,10 @@ +// https://github.com/michael-ciniawsky/postcss-load-config + +module.exports = { + "plugins": { + "postcss-import": {}, + "postcss-url": {}, + // to edit target browsers: use "browserslist" field in package.json + "autoprefixer": {} + } +} diff --git a/basta/README.md b/basta/README.md new file mode 100644 index 0000000..33d179d --- /dev/null +++ b/basta/README.md @@ -0,0 +1,21 @@ +# basta + +> BaStA frontend + +## Build Setup + +``` bash +# install dependencies +npm install + +# serve with hot reload at localhost:8080 +npm run dev + +# build for production with minification +npm run build + +# build for production and view the bundle analyzer report +npm run build --report +``` + +For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).