Skip to content

Commit 9e5d88f

Browse files
committedFeb 11, 2019
chore: rename vue plain
1 parent cb9d5b6 commit 9e5d88f

File tree

9 files changed

+6
-6
lines changed

9 files changed

+6
-6
lines changed
 

‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ addons:
99
install:
1010
- export DISPLAY=':99.0'
1111
- Xvfb :99 -screen 0 1366x768x24 > /dev/null 2>&1 &
12-
script:
1312
- npm i
13+
script:
1414
- npm run lint
1515
- npm run serve && npm run test
1616
after_script:

‎index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<a href="./mobx">mobx</a>
2525
</li>
2626
<li>
27-
<a href="./plain">plain</a>
27+
<a href="./vue-plain">vue-plain</a>
2828
</li>
2929
<li>
3030
<a href="./unstated">unstated</a>

‎macaca-reliable.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const res = {
4141
extraInfo: {
4242
'reilable-cli': getDepsPkgVersion('reilable-cli'),
4343
'macaca-wd': getDepsPkgVersion('macaca-wd'),
44-
'vue': getDepsPkgVersion('vue')
44+
'vue': getDepsPkgVersion('vue'),
4545
}
4646
};
4747

File renamed without changes.
File renamed without changes.
File renamed without changes.

‎plain/index.html renamed to ‎vue-plain/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<meta charset="UTF-8">
55
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
66
<link rel="shortcut icon" href="../assets/images/logo.png" type="image/x-icon" />
7-
<title>Plain &bull; TodoMVC</title>
7+
<title>Vue Plain &bull; TodoMVC</title>
88
</head>
99
<body>
1010
<div id="app">
1111
<script>
1212
var isOnline = !!~location.host.indexOf('github');
1313
var script = document.createElement('script');
1414
script.type = 'text/javascript';
15-
script.src = (isOnline ? '//unpkg.com/web-app-bootstrap@latest' : '..') + '/dist/plain.js';
15+
script.src = (isOnline ? '//unpkg.com/web-app-bootstrap@latest' : '..') + '/dist/vue-plain.js';
1616
var head = document.getElementsByTagName('head')[0];
1717
head.appendChild(script);
1818
</script>
File renamed without changes.

‎webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const config = {
2828
redux: path.resolve('redux'),
2929
mobx: path.resolve('mobx'),
3030
'vuex-ts': path.resolve('vuex-ts'),
31-
plain: path.resolve('plain'),
31+
'vue-plain': path.resolve('vue-plain'),
3232
unstated: path.resolve('unstated'),
3333
'app-bootstrap': path.resolve('app-bootstrap')
3434
},

0 commit comments

Comments
 (0)