Browse Source

[misc] gitignore, constants

master
Muthu Kumar 6 years ago
parent
commit
4800ca35ae
  1. 1
      .gitignore
  2. 7
      constants.js

1
.gitignore

@ -0,0 +1 @@
node_modules

7
constants.js

@ -0,0 +1,7 @@
const path = require('path');
const home = require('os').homedir();
module.exports = {
MARK_DIR: path.join(home, '/.mark'),
MARK_RC: path.join(home, '/.markrc'),
}
Loading…
Cancel
Save