Skip to content

Commit 075e920

Browse files
peterpeter
peter
authored and
peter
committed
v2.0.9
1 parent 42206ae commit 075e920

26 files changed

+11350
-1
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ dist
1515
node_modules
1616
.gitignore
1717
yarn.lock
18-
*.js
1918
package-lock.json
2019
.npmignore
2120
_config.yml

app/localWebServer.js

+1,215
Large diffs are not rendered by default.

app/main.js

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
"use strict";
2+
/*!
3+
* Copyright 2018 CoNET Technology Inc. All Rights Reserved.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
Object.defineProperty(exports, "__esModule", { value: true });
18+
const localWebServer_1 = require("./localWebServer");
19+
const test = /^true$/.test(process.argv[2]) ? true : false;
20+
const _start = process.argv[3] || false;
21+
exports.start = (cmd, _test) => {
22+
const localServer = new localWebServer_1.default(cmd, _test);
23+
};
24+
if (_start) {
25+
exports.start(null, false);
26+
}

app/public/scripts/Cleave.js

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

0 commit comments

Comments
 (0)