Skip to content

Commit

Permalink
v2.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
peter authored and peter committed Jun 25, 2018
1 parent 42206ae commit 075e920
Show file tree
Hide file tree
Showing 26 changed files with 11,350 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ dist
node_modules
.gitignore
yarn.lock
*.js
package-lock.json
.npmignore
_config.yml
1,215 changes: 1,215 additions & 0 deletions app/localWebServer.js

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions app/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
"use strict";
/*!
* Copyright 2018 CoNET Technology Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
const localWebServer_1 = require("./localWebServer");
const test = /^true$/.test(process.argv[2]) ? true : false;
const _start = process.argv[3] || false;
exports.start = (cmd, _test) => {
const localServer = new localWebServer_1.default(cmd, _test);
};
if (_start) {
exports.start(null, false);
}
8 changes: 8 additions & 0 deletions app/public/scripts/Cleave.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 075e920

Please sign in to comment.