Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions cmds/core/emacs.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@

"use strict";

const os = require('os');
const fs = require('fs');
const path = require('path');
const child_process = require("child_process");

exports.command = ['emacs [args..]'];
Expand Down
4 changes: 0 additions & 4 deletions cmds/core/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@

"use strict";

const path = require('path');
const fs = require('fs');
const readline = require('readline');

exports.command = ['init [files..]'];
exports.desc = 'Initialize project to use Eask';
exports.builder = yargs => yargs
Expand Down
32 changes: 29 additions & 3 deletions package-lock.json

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "A set of command-line tools to build Emacs packages",
"main": "eask",
"scripts": {
"test-unsafe": "env ALLOW_UNSAFE=1 jest",
"test-debug": "env DEBUG=1 jest",
"test-unsafe": "cross-env ALLOW_UNSAFE=1 jest",
"test-debug": "cross-env DEBUG=1 jest",
"test": "jest",
"test-reset": "rm -rf ./test/jest/.eask ./test/jest/*/.eask; git restore ./test/jest/*/",
"pkg-all": "pkg package.json",
Expand Down Expand Up @@ -37,6 +37,7 @@
},
"devDependencies": {
"@yao-pkg/pkg": "^6.0.0",
"cross-env": "^10.1.0",
"jest": "^29.7.0",
"semver-compare": "^1.0.0"
},
Expand Down