Skip to content

Commit 2d74428

Browse files
committed
status update on connect
1 parent 0e648d0 commit 2d74428

15 files changed

+104
-25
lines changed

.babelrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"presets": ["es2015", "stage-2"],
3+
"plugins": ["transform-runtime"],
4+
"comments": false
5+
}

.eslintrc.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module.exports = {
2+
root: true,
3+
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
4+
extends: 'standard',
5+
// required to lint *.vue files
6+
plugins: [
7+
'html'
8+
],
9+
// add your custom rules here
10+
'rules': {
11+
// allow paren-less arrow functions
12+
'arrow-parens': 0,
13+
// allow debugger during development
14+
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
15+
}
16+
}

dist/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!doctype html><html class=no-js lang=en><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><title>My OpenGb Printer</title><link href=/static/app.755b84b73ed5736a2dc26c6bdec2d4eb.css rel=stylesheet></head><body><div id=main-body><app></app></div><script src=/static/app.bb82fa90836c4c48362a.js></script></body></html>
1+
<!doctype html><html class=no-js lang=en><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><title>My OpenGb Printer</title><link href=/static/app.49784d63fa99258799e0668790cabae2.css rel=stylesheet></head><body><div id=main-body><app></app></div><script src=/static/app.b6689de6fe4cc81b082f.js></script></body></html>

dist/static/app.49784d63fa99258799e0668790cabae2.css

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/static/app.49784d63fa99258799e0668790cabae2.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)