isaacscript 3.6.28 → 3.6.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -37,8 +37,10 @@ jobs:
|
|
|
37
37
|
# https://github.com/IsaacScript/isaac-steam-workshop-upload
|
|
38
38
|
# Then, uncomment the lines below.
|
|
39
39
|
#- name: Upload the mod to Steam Workshop (if this is a release commit)
|
|
40
|
-
# uses: IsaacScript/isaac-steam-workshop-upload@
|
|
40
|
+
# uses: IsaacScript/isaac-steam-workshop-upload@v2
|
|
41
41
|
# if: "contains(github.event.head_commit.message, 'chore: release') && github.event_name != 'pull_request'"
|
|
42
|
+
# with:
|
|
43
|
+
# mod_path: mod
|
|
42
44
|
# env:
|
|
43
45
|
# CONFIG_VDF_CONTENTS: ${{ secrets.CONFIG_VDF_CONTENTS }}
|
|
44
46
|
# @template-mod-end
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.30",
|
|
4
4
|
"description": "A command line tool for managing Isaac mods written in TypeScript.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"isaac",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"jsonc-parser": "^3.2.0",
|
|
37
37
|
"klaw-sync": "^6.0.0",
|
|
38
38
|
"moment": "^2.29.4",
|
|
39
|
-
"npm-check-updates": "^16.
|
|
39
|
+
"npm-check-updates": "^16.7.2",
|
|
40
40
|
"prompt": "^1.3.0",
|
|
41
41
|
"source-map": "^0.7.4",
|
|
42
42
|
"source-map-support": "^0.5.21",
|
package/src/file.js
CHANGED
|
@@ -5,14 +5,14 @@ const tslib_1 = require("tslib");
|
|
|
5
5
|
const chalk_1 = tslib_1.__importDefault(require("chalk"));
|
|
6
6
|
const isaacscript_common_ts_1 = require("isaacscript-common-ts");
|
|
7
7
|
const crypto = tslib_1.__importStar(require("node:crypto"));
|
|
8
|
-
const
|
|
9
|
-
const
|
|
8
|
+
const fs = tslib_1.__importStar(require("node:fs"));
|
|
9
|
+
const path = tslib_1.__importStar(require("node:path"));
|
|
10
10
|
function copyFile(srcPath, dstPath, verbose) {
|
|
11
11
|
if (verbose) {
|
|
12
12
|
console.log(`Copying: ${srcPath} --> ${dstPath}`);
|
|
13
13
|
}
|
|
14
14
|
try {
|
|
15
|
-
|
|
15
|
+
fs.cpSync(srcPath, dstPath, {
|
|
16
16
|
recursive: true,
|
|
17
17
|
});
|
|
18
18
|
}
|
|
@@ -29,7 +29,7 @@ function deleteFileOrDirectory(filePath, verbose) {
|
|
|
29
29
|
console.log(`Deleting: ${filePath}`);
|
|
30
30
|
}
|
|
31
31
|
try {
|
|
32
|
-
|
|
32
|
+
fs.rmSync(filePath, {
|
|
33
33
|
recursive: true,
|
|
34
34
|
});
|
|
35
35
|
}
|
|
@@ -47,7 +47,7 @@ function fileExists(filePath, verbose) {
|
|
|
47
47
|
}
|
|
48
48
|
let pathExists;
|
|
49
49
|
try {
|
|
50
|
-
pathExists =
|
|
50
|
+
pathExists = fs.existsSync(filePath);
|
|
51
51
|
}
|
|
52
52
|
catch (err) {
|
|
53
53
|
(0, isaacscript_common_ts_1.error)(`Failed to check if "${chalk_1.default.green(filePath)}" exists:`, err);
|
|
@@ -68,7 +68,7 @@ function getDirList(dirPath, verbose) {
|
|
|
68
68
|
}
|
|
69
69
|
let fileList;
|
|
70
70
|
try {
|
|
71
|
-
fileList =
|
|
71
|
+
fileList = fs.readdirSync(dirPath);
|
|
72
72
|
}
|
|
73
73
|
catch (err) {
|
|
74
74
|
(0, isaacscript_common_ts_1.error)(`Failed to get the files in the "${chalk_1.default.green(dirPath)}" directory:`, err);
|
|
@@ -85,7 +85,7 @@ function getFileStats(filePath, verbose) {
|
|
|
85
85
|
}
|
|
86
86
|
let fileStats;
|
|
87
87
|
try {
|
|
88
|
-
fileStats =
|
|
88
|
+
fileStats = fs.statSync(filePath);
|
|
89
89
|
}
|
|
90
90
|
catch (err) {
|
|
91
91
|
(0, isaacscript_common_ts_1.error)(`Failed to get the file stats for "${chalk_1.default.green(filePath)}":`, err);
|
|
@@ -96,7 +96,7 @@ function getFileStats(filePath, verbose) {
|
|
|
96
96
|
return fileStats;
|
|
97
97
|
}
|
|
98
98
|
function getHashOfFile(filePath) {
|
|
99
|
-
const fileBuffer =
|
|
99
|
+
const fileBuffer = fs.readFileSync(filePath);
|
|
100
100
|
const hashSum = crypto.createHash("sha256");
|
|
101
101
|
hashSum.update(fileBuffer);
|
|
102
102
|
return hashSum.digest("hex");
|
|
@@ -112,7 +112,7 @@ function getLinkedFileStats(filePath, verbose) {
|
|
|
112
112
|
}
|
|
113
113
|
let fileStats;
|
|
114
114
|
try {
|
|
115
|
-
fileStats =
|
|
115
|
+
fileStats = fs.lstatSync(filePath);
|
|
116
116
|
}
|
|
117
117
|
catch (err) {
|
|
118
118
|
(0, isaacscript_common_ts_1.error)(`Failed to get the linked file stats for "${chalk_1.default.green(filePath)}":`, err);
|
|
@@ -139,8 +139,8 @@ function isLink(filePath, verbose) {
|
|
|
139
139
|
}
|
|
140
140
|
exports.isLink = isLink;
|
|
141
141
|
function isSubDirOf(dir, parent) {
|
|
142
|
-
const relative =
|
|
143
|
-
return (relative !== "" && !relative.startsWith("..") && !
|
|
142
|
+
const relative = path.relative(parent, dir);
|
|
143
|
+
return (relative !== "" && !relative.startsWith("..") && !path.isAbsolute(relative));
|
|
144
144
|
}
|
|
145
145
|
exports.isSubDirOf = isSubDirOf;
|
|
146
146
|
/** Will recursively make as many subdirectories as needed. */
|
|
@@ -149,7 +149,7 @@ function makeDir(dirPath, verbose) {
|
|
|
149
149
|
console.log(`Making a directory: ${dirPath}`);
|
|
150
150
|
}
|
|
151
151
|
try {
|
|
152
|
-
|
|
152
|
+
fs.mkdirSync(dirPath, {
|
|
153
153
|
recursive: true,
|
|
154
154
|
});
|
|
155
155
|
}
|
|
@@ -167,7 +167,7 @@ function readFile(filePath, verbose) {
|
|
|
167
167
|
}
|
|
168
168
|
let fileContents;
|
|
169
169
|
try {
|
|
170
|
-
fileContents =
|
|
170
|
+
fileContents = fs.readFileSync(filePath, "utf8");
|
|
171
171
|
}
|
|
172
172
|
catch (err) {
|
|
173
173
|
(0, isaacscript_common_ts_1.error)(`Failed to read the "${chalk_1.default.green(filePath)}" file:`, err);
|
|
@@ -183,7 +183,7 @@ function renameFile(srcPath, dstPath, verbose) {
|
|
|
183
183
|
console.log(`Renaming: ${srcPath} --> ${dstPath}`);
|
|
184
184
|
}
|
|
185
185
|
try {
|
|
186
|
-
|
|
186
|
+
fs.renameSync(srcPath, dstPath);
|
|
187
187
|
}
|
|
188
188
|
catch (err) {
|
|
189
189
|
(0, isaacscript_common_ts_1.error)(`Failed to rename "${chalk_1.default.green(srcPath)}" to "${chalk_1.default.green(dstPath)}":`, err);
|
|
@@ -197,12 +197,18 @@ function touch(filePath, verbose) {
|
|
|
197
197
|
if (verbose) {
|
|
198
198
|
console.log(`Touching: ${filePath}`);
|
|
199
199
|
}
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
200
|
+
if (fileExists(filePath, verbose)) {
|
|
201
|
+
try {
|
|
202
|
+
fs.accessSync(filePath);
|
|
203
|
+
const now = new Date();
|
|
204
|
+
fs.utimesSync(filePath, now, now);
|
|
205
|
+
}
|
|
206
|
+
catch (err) {
|
|
207
|
+
(0, isaacscript_common_ts_1.error)(`Failed to touch the "${chalk_1.default.green(filePath)}" file:`, err);
|
|
208
|
+
}
|
|
203
209
|
}
|
|
204
|
-
|
|
205
|
-
(
|
|
210
|
+
else {
|
|
211
|
+
writeFile(filePath, "", verbose);
|
|
206
212
|
}
|
|
207
213
|
if (verbose) {
|
|
208
214
|
console.log(`Touched: ${filePath}`);
|
|
@@ -214,7 +220,7 @@ function writeFile(filePath, data, verbose) {
|
|
|
214
220
|
console.log(`Writing data to: ${filePath}`);
|
|
215
221
|
}
|
|
216
222
|
try {
|
|
217
|
-
|
|
223
|
+
fs.writeFileSync(filePath, data);
|
|
218
224
|
}
|
|
219
225
|
catch (err) {
|
|
220
226
|
(0, isaacscript_common_ts_1.error)(`Failed to write to the "${chalk_1.default.green(filePath)}" file:`, err);
|
|
@@ -232,7 +238,7 @@ function writeFileTry(filePath, data, verbose) {
|
|
|
232
238
|
if (verbose) {
|
|
233
239
|
console.log(`Writing data to: ${filePath}`);
|
|
234
240
|
}
|
|
235
|
-
|
|
241
|
+
fs.writeFileSync(filePath, data);
|
|
236
242
|
if (verbose) {
|
|
237
243
|
console.log(`Wrote data to: ${filePath}`);
|
|
238
244
|
}
|
package/src/file.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file.js","sourceRoot":"","sources":["../../../../packages/isaacscript-cli/src/file.ts"],"names":[],"mappings":";;;;AAAA,0DAA0B;AAC1B,iEAA8C;AAC9C,4DAAsC;AACtC,
|
|
1
|
+
{"version":3,"file":"file.js","sourceRoot":"","sources":["../../../../packages/isaacscript-cli/src/file.ts"],"names":[],"mappings":"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"}
|