Skip to content

Commit c69beb8

Browse files
author
Alan Smith
committed
Move from parcel to webpack/vuecli
1 parent 309b881 commit c69beb8

File tree

19 files changed

+6453
-3680
lines changed

19 files changed

+6453
-3680
lines changed

.babelrc

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

.browserslistrc

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

.editorconfig

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
1-
root = true
2-
3-
[*]
1+
[*.{js,jsx,ts,tsx,vue}]
42
indent_style = space
53
indent_size = 2
64
end_of_line = lf
7-
charset = utf-8
85
trim_trailing_whitespace = true
96
insert_final_newline = true
10-
11-
[*.md]
12-
trim_trailing_whitespace = false
13-
14-
[*.scss]
15-
indent_size = 4
7+
max_line_length = 100

.eslintrc.js

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

.posthtmlrc

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

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# chrome-event-countdown
2+
3+
## Project setup
4+
```
5+
npm install
6+
```
7+
8+
### Compiles and hot-reloads for development
9+
```
10+
npm run serve
11+
```
12+
13+
### Compiles and minifies for production
14+
```
15+
npm run build
16+
```
17+
18+
### Run your tests
19+
```
20+
npm run test
21+
```
22+
23+
### Lints and fixes files
24+
```
25+
npm run lint
26+
```
27+
28+
### Customize configuration
29+
See [Configuration Reference](https://cli.vuejs.org/config/).

index.html

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

0 commit comments

Comments
 (0)