A little 'asinit' CLI tool for quickly setting up a project; Minor refactoring

This commit is contained in:
dcodeIO
2018-04-01 23:46:41 +02:00
parent 6ff69394f0
commit 59a22c1842
16 changed files with 481 additions and 328 deletions

View File

@ -13,7 +13,7 @@
const fs = require("fs");
const path = require("path");
const utf8 = require("./util/utf8");
const utf8 = require("@protobufjs/utf8");
const EOL = process.platform === "win32" ? "\r\n" : "\n";
// Use distribution files if present, otherwise run the sources directly