Skip to content
This repository was archived by the owner on May 14, 2023. It is now read-only.

Commit 28abdc6

Browse files
committed
Main project structure is being built.
- Updated package.json scripts.
1 parent 79d7555 commit 28abdc6

File tree

4 files changed

+24
-1
lines changed

4 files changed

+24
-1
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"description": "Iranian official brand colors in one place at http://www.brandcolors.ir",
55
"private": true,
66
"scripts": {
7-
"test": "echo \"Error: no test specified\" && exit 1"
7+
"lint": "eslint .",
8+
"dev": "node ./server/server.js"
89
},
910
"repository": {
1011
"type": "git",

src/App.vue

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<template>
2+
<div class="wrapper" id="app">
3+
HELLO WORLD
4+
</div>
5+
</template>
6+
7+
<script>
8+
export default {};
9+
</script>

src/index.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/* eslint-disable no-unused-vars */
2+
/* eslint-disable no-new */
3+
4+
import Vue from 'vue';
5+
import VueRouter from 'vue-router';
6+
import App from './App.vue';
7+
8+
import Style from './style.scss';
9+
10+
const app = new Vue({
11+
el: '#app',
12+
render: h => h(App),
13+
});

src/style.scss

Whitespace-only changes.

0 commit comments

Comments
 (0)