-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(CI.yml): remove unnecessary empty line in CI workflow file
feat(CI.yml): add support for building aarch64-apple-darwin target on macOS feat(CI.yml): add step to build universal macOS binary feat(darwin-arm64): add npm package for aarch64-apple-darwin binary feat(darwin-universal): add npm package for universal-apple-darwin binary chore(darwin-x64): update repository URL in package.json chore(linux-x64-gnu): update repository URL in package.json chore(win32-x64-msvc): update repository URL in package.json chore(package.json): update repository URL, add author information, and update description
- Loading branch information
1 parent
2d5502b
commit e86e01b
Showing
9 changed files
with
105 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# `@lambda-group/scylladb-darwin-arm64` | ||
|
||
This is the **aarch64-apple-darwin** binary for `@lambda-group/scylladb` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "@lambda-group/scylladb-darwin-arm64", | ||
"version": "0.0.4", | ||
"os": [ | ||
"darwin" | ||
], | ||
"cpu": [ | ||
"arm64" | ||
], | ||
"main": "scylladb.darwin-arm64.node", | ||
"files": [ | ||
"scylladb.darwin-arm64.node" | ||
], | ||
"description": "🚀 JavaScript driver for ScyllaDB, harnessing Rust's power through napi-rs for top performance. Pre-release stage. 🧪🔧", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">= 10" | ||
}, | ||
"repository": "https://github.com/Daniel-Boll/scylla-javascript-driver" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# `@lambda-group/scylladb-darwin-universal` | ||
|
||
This is the **universal-apple-darwin** binary for `@lambda-group/scylladb` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"name": "@lambda-group/scylladb-darwin-universal", | ||
"version": "0.0.4", | ||
"os": [ | ||
"darwin" | ||
], | ||
"main": "scylladb.darwin-universal.node", | ||
"files": [ | ||
"scylladb.darwin-universal.node" | ||
], | ||
"description": "🚀 JavaScript driver for ScyllaDB, harnessing Rust's power through napi-rs for top performance. Pre-release stage. 🧪🔧", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">= 10" | ||
}, | ||
"repository": "https://github.com/Daniel-Boll/scylla-javascript-driver" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,24 @@ | ||
{ | ||
"name": "@lambda-group/scylladb", | ||
"version": "0.0.4", | ||
"repository": "https://github.com/Daniel-Boll/scylla-javascript-driver", | ||
"description": "🚀 JavaScript driver for ScyllaDB, harnessing Rust's power through napi-rs for top performance. Pre-release stage. 🧪🔧", | ||
"author": { | ||
"name": "Daniel Boll", | ||
"email": "[email protected]", | ||
"url": "https://daniel-boll.me" | ||
}, | ||
"main": "index.js", | ||
"types": "index.d.ts", | ||
"scripts": { | ||
"artifacts": "napi artifacts", | ||
"build": "napi build --platform --release", | ||
"build:debug": "napi build --platform", | ||
"prepublishOnly": "napi prepublish -t npm", | ||
"test": "ava", | ||
"universal": "napi universal", | ||
"version": "napi version" | ||
}, | ||
"napi": { | ||
"name": "scylladb", | ||
"triples": {} | ||
|
@@ -25,16 +41,5 @@ | |
"engines": { | ||
"node": ">= 10" | ||
}, | ||
"scripts": { | ||
"artifacts": "napi artifacts", | ||
"build": "napi build --platform --release", | ||
"build:debug": "napi build --platform", | ||
"prepublishOnly": "napi prepublish -t npm", | ||
"test": "ava", | ||
"universal": "napi universal", | ||
"version": "napi version" | ||
}, | ||
"packageManager": "[email protected]", | ||
"repository": "https://github.com/Daniel-Boll/scylladb", | ||
"description": "A ScyllaDB Driver alternative for Nodejs, Javascript and Typescript written using Node API" | ||
"packageManager": "[email protected]" | ||
} |