Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fecfe13

Browse files
committedMar 18, 2025··
enable lint for js
1 parent 51c30f9 commit fecfe13

File tree

85 files changed

+1013
-801
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+1013
-801
lines changed
 

‎.github/workflows/get_artifact_dir_name.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
const fs = require("fs");
2-
const os = require("os");
1+
const fs = require("node:fs");
2+
const os = require("node:os");
33

44
const { dirName: artifactDirName } = require("../../cli/bin_path.js");
55

‎.github/workflows/prepare_package_upload.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
const fs = require("fs");
2-
const os = require("os");
1+
const fs = require("node:fs");
2+
const os = require("node:os");
33

44
const packageSpec = require("rescript/package.json");
55
const { version } = packageSpec;

0 commit comments

Comments
 (0)
Please sign in to comment.