Clean things up before things get serious
This commit is contained in:
parent
db6d722baf
commit
3508d3d8e8
34
README.md
34
README.md
|
@ -1,29 +1,21 @@
|
||||||
# diretto
|
# diretto
|
||||||
|
|
||||||
## Project setup
|
## Getting started
|
||||||
```
|
|
||||||
yarn install
|
### Get dependencies
|
||||||
|
|
||||||
|
```sh
|
||||||
|
yarn
|
||||||
```
|
```
|
||||||
|
|
||||||
### Compiles and hot-reloads for development
|
### Compile and run dev server
|
||||||
```
|
|
||||||
yarn run serve
|
```sh
|
||||||
|
yarn serve
|
||||||
```
|
```
|
||||||
|
|
||||||
### Compiles and minifies for production
|
### Compile and build for production
|
||||||
```
|
|
||||||
yarn run build
|
|
||||||
```
|
|
||||||
|
|
||||||
### Run your tests
|
```sh
|
||||||
|
yarn build
|
||||||
```
|
```
|
||||||
yarn run test
|
|
||||||
```
|
|
||||||
|
|
||||||
### Lints and fixes files
|
|
||||||
```
|
|
||||||
yarn run lint
|
|
||||||
```
|
|
||||||
|
|
||||||
### Customize configuration
|
|
||||||
See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
||||||
|
|
|
@ -9,6 +9,9 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"core-js": "^2.6.5",
|
"core-js": "^2.6.5",
|
||||||
|
"postcss-custom-properties": "^9.0.2",
|
||||||
|
"postcss-nested": "^4.1.2",
|
||||||
|
"postcss-smart-import": "^0.7.6",
|
||||||
"register-service-worker": "^1.6.2",
|
"register-service-worker": "^1.6.2",
|
||||||
"tailwindcss": "^1.0.4",
|
"tailwindcss": "^1.0.4",
|
||||||
"vue": "^2.6.10",
|
"vue": "^2.6.10",
|
||||||
|
@ -28,8 +31,6 @@
|
||||||
"babel-eslint": "^10.0.1",
|
"babel-eslint": "^10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"eslint-plugin-vue": "^5.0.0",
|
"eslint-plugin-vue": "^5.0.0",
|
||||||
"node-sass": "^4.9.0",
|
|
||||||
"sass-loader": "^7.1.0",
|
|
||||||
"typescript": "^3.4.3",
|
"typescript": "^3.4.3",
|
||||||
"vue-cli-plugin-tailwindcss": "^0.1.1",
|
"vue-cli-plugin-tailwindcss": "^0.1.1",
|
||||||
"vue-template-compiler": "^2.6.10"
|
"vue-template-compiler": "^2.6.10"
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: {
|
plugins: {
|
||||||
autoprefixer: {},
|
autoprefixer: {},
|
||||||
tailwindcss: "./tailwind.config.js"
|
tailwindcss: "./tailwind.config.js",
|
||||||
|
"postcss-smart-import": {},
|
||||||
|
"postcss-custom-properties": {},
|
||||||
|
"postcss-nested": {}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
// prettier.config.js or .prettierrc.js
|
|
||||||
module.exports = {
|
|
||||||
tabWidth: 4,
|
|
||||||
useTabs: true
|
|
||||||
};
|
|
|
@ -1,5 +1,6 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en" class="antialiased">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
@ -7,11 +8,14 @@
|
||||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||||
<title>diretto</title>
|
<title>diretto</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<noscript>
|
<noscript>
|
||||||
<strong>We're sorry but diretto doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
<strong>We're sorry but diretto doesn't work properly without JavaScript enabled. Please enable it to
|
||||||
|
continue.</strong>
|
||||||
</noscript>
|
</noscript>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
<!-- built files will be auto injected -->
|
<!-- built files will be auto injected -->
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
|
@ -9,12 +9,13 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="postcss">
|
||||||
@import "assets/styles/theme";
|
@import "assets/styles/theme";
|
||||||
|
|
||||||
#app {
|
#app {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
#topnav {
|
#topnav {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
11
src/assets/styles/theme.css
Normal file
11
src/assets/styles/theme.css
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
:root {
|
||||||
|
--black: #000;
|
||||||
|
--ink: #062f4f;
|
||||||
|
--posy: #813772;
|
||||||
|
--embers: #b82601;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: var(--black);
|
||||||
|
color: white;
|
||||||
|
}
|
|
@ -1,9 +0,0 @@
|
||||||
$black: #000;
|
|
||||||
$ink: #062f4f;
|
|
||||||
$posy: #813772;
|
|
||||||
$embers: #b82601;
|
|
||||||
|
|
||||||
body {
|
|
||||||
background: $black;
|
|
||||||
color: white;
|
|
||||||
}
|
|
|
@ -4,7 +4,6 @@ import router from "./router";
|
||||||
import store from "./store";
|
import store from "./store";
|
||||||
import "./registerServiceWorker";
|
import "./registerServiceWorker";
|
||||||
import "@/assets/styles/main.css";
|
import "@/assets/styles/main.css";
|
||||||
import "@/assets/styles/theme.scss";
|
|
||||||
|
|
||||||
Vue.config.productionTip = false;
|
Vue.config.productionTip = false;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
theme: {
|
prefix: "",
|
||||||
extend: {}
|
important: false,
|
||||||
},
|
separator: ":",
|
||||||
|
theme: {},
|
||||||
variants: {},
|
variants: {},
|
||||||
plugins: []
|
plugins: []
|
||||||
}
|
};
|
||||||
|
|
|
@ -11,20 +11,11 @@
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"types": [
|
"types": ["webpack-env"],
|
||||||
"webpack-env"
|
|
||||||
],
|
|
||||||
"paths": {
|
"paths": {
|
||||||
"@/*": [
|
"@/*": ["src/*"]
|
||||||
"src/*"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"lib": [
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
||||||
"esnext",
|
|
||||||
"dom",
|
|
||||||
"dom.iterable",
|
|
||||||
"scripthost"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*.ts",
|
"src/**/*.ts",
|
||||||
|
@ -33,7 +24,5 @@
|
||||||
"tests/**/*.ts",
|
"tests/**/*.ts",
|
||||||
"tests/**/*.tsx"
|
"tests/**/*.tsx"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": ["node_modules"]
|
||||||
"node_modules"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user