Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Arlen22 committed Apr 24, 2020
1 parent 37af030 commit 3328da3
Show file tree
Hide file tree
Showing 6 changed files with 140 additions and 455 deletions.
6 changes: 0 additions & 6 deletions MacOS/Tiddlyserver

This file was deleted.

6 changes: 6 additions & 0 deletions build-package-json.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
const json = JSON.parse(require("fs").readFileSync("./package.json", "utf8"));
delete json.devDependencies;
let deps = json.dependencies;
json.dependencies = {};
json.prodDependencies.forEach(e => {
json.dependencies[e] = deps[e];
})
delete json.prodDependencies;
delete json.main;
delete json.scripts;
json.bin = "./index.js";
Expand Down
Loading

0 comments on commit 3328da3

Please sign in to comment.