forked from JS-DevTools/npm-publish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaths.js
52 lines (41 loc) · 1.17 KB
/
paths.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
"use strict";
const path = require("path");
const ROOT_DIR = path.resolve(__dirname, "../..");
module.exports = {
/**
* The path of the GitHub Action JavaScript file
*/
action: path.join(ROOT_DIR, "dist/index.js"),
/**
* The path of the CLI JavaScript file
*/
cli: path.join(ROOT_DIR, "bin/npm-publish.js"),
/**
* The path of our mock bin directory
*/
bin: path.join(ROOT_DIR, "test/fixtures/bin"),
/**
* The path of our mock NPM binary
*/
npm: path.join(ROOT_DIR, "test/fixtures/bin/npm"),
/**
* The path of the user's .npmrc file
*/
npmrc: path.join(ROOT_DIR, "test/.tmp/home/.npmrc"),
/**
* The path of the config file for the mock NPM binary
*/
mocks: path.join(ROOT_DIR, "test/.tmp/npm-mocks.json"),
/**
* The temp directory used for files/folders that are created during tests
*/
tmp: path.join(ROOT_DIR, "test/.tmp"),
/**
* The path used as the user's home directory, where the .npmrc file is located
*/
home: path.join(ROOT_DIR, "test/.tmp/home"),
/**
* The path used as the user's workspace and CWD when running the GitHub Action
*/
workspace: path.join(ROOT_DIR, "test/.tmp/workspace"),
};