Skip to content

Commit

Permalink
Merge branch 'master' into fix-vs-generator-finder
Browse files Browse the repository at this point in the history
  • Loading branch information
diefbell-grabcad authored Nov 22, 2024
2 parents c144d18 + 2e88344 commit 8fdb172
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
- macos-13 # x86
- windows-latest
node_version:
- 14
- 20
- 22
include:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aminya/cmake-ts",
"version": "0.4.0-aminya.1",
"name": "cmake-ts",
"version": "0.4.0",
"description": "cmake-js rewrite in typescript to support advanced build configurations",
"main": "build/lib.js",
"bin": "build/main.js",
Expand Down
2 changes: 1 addition & 1 deletion src/urlRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import os from 'os';

const NODE_MIRROR = process.env.NVM_NODEJS_ORG_MIRROR || "https://nodejs.org/dist";
const IOJS_MIRROR = process.env.NVM_IOJS_ORG_MIRROR || "https://iojs.org/dist";
const ELECTRON_MIRROR = process.env.ELECTRON_MIRROR || "https://atom.io/download/atom-shell";
const ELECTRON_MIRROR = process.env.ELECTRON_MIRROR || "https://artifacts.electronjs.org/headers/dist";

export const HOME_DIRECTORY = process.env[(os.platform() === "win32") ? "USERPROFILE" : "HOME"] as string;

Expand Down

0 comments on commit 8fdb172

Please sign in to comment.