mirror of
https://github.com/Drop-OSS/droplet.git
synced 2025-11-13 00:02:46 +10:00
Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 921eb02132 | |||
| a95d0cea26 | |||
| 277651df09 | |||
| 7896f11207 | |||
| 0c3196ba7d | |||
| a0791d71a9 | |||
| a8b8d4bb3d | |||
| 59dd17a156 | |||
| 2c28c605ba | |||
| 987defaafb | |||
| 7815338e9e | |||
| 7bb0689cbd |
364
.github/workflows/CI.yml
vendored
364
.github/workflows/CI.yml
vendored
@ -55,12 +55,6 @@ jobs:
|
|||||||
- host: ubuntu-latest
|
- host: ubuntu-latest
|
||||||
target: armv7-unknown-linux-musleabihf
|
target: armv7-unknown-linux-musleabihf
|
||||||
build: yarn build --target armv7-unknown-linux-musleabihf
|
build: yarn build --target armv7-unknown-linux-musleabihf
|
||||||
- host: ubuntu-latest
|
|
||||||
target: aarch64-linux-android
|
|
||||||
build: yarn build --target aarch64-linux-android
|
|
||||||
- host: ubuntu-latest
|
|
||||||
target: armv7-linux-androideabi
|
|
||||||
build: yarn build --target armv7-linux-androideabi
|
|
||||||
- host: ubuntu-latest
|
- host: ubuntu-latest
|
||||||
target: aarch64-unknown-linux-musl
|
target: aarch64-unknown-linux-musl
|
||||||
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
|
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
|
||||||
@ -166,180 +160,180 @@ jobs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
- name: Test bindings
|
- name: Test bindings
|
||||||
run: yarn test
|
run: yarn test
|
||||||
test-linux-x64-gnu-binding:
|
# test-linux-x64-gnu-binding:
|
||||||
name: Test bindings on Linux-x64-gnu - node@${{ matrix.node }}
|
# name: Test bindings on Linux-x64-gnu - node@${{ matrix.node }}
|
||||||
needs:
|
# needs:
|
||||||
- build
|
# - build
|
||||||
strategy:
|
# strategy:
|
||||||
fail-fast: false
|
# fail-fast: false
|
||||||
matrix:
|
# matrix:
|
||||||
node:
|
# node:
|
||||||
- "18"
|
# - "18"
|
||||||
- "20"
|
# - "20"
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v4
|
# - uses: actions/checkout@v4
|
||||||
- name: Setup node
|
# - name: Setup node
|
||||||
uses: actions/setup-node@v4
|
# uses: actions/setup-node@v4
|
||||||
with:
|
# with:
|
||||||
node-version: ${{ matrix.node }}
|
# node-version: ${{ matrix.node }}
|
||||||
cache: yarn
|
# cache: yarn
|
||||||
- name: Install dependencies
|
# - name: Install dependencies
|
||||||
run: yarn install
|
# run: yarn install
|
||||||
- name: Download artifacts
|
# - name: Download artifacts
|
||||||
uses: actions/download-artifact@v4
|
# uses: actions/download-artifact@v4
|
||||||
with:
|
# with:
|
||||||
name: bindings-x86_64-unknown-linux-gnu
|
# name: bindings-x86_64-unknown-linux-gnu
|
||||||
path: .
|
# path: .
|
||||||
- name: List packages
|
# - name: List packages
|
||||||
run: ls -R .
|
# run: ls -R .
|
||||||
shell: bash
|
# shell: bash
|
||||||
- name: Test bindings
|
# - name: Test bindings
|
||||||
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-slim yarn test
|
# run: docker run --rm -v $(pwd):/build -w /build public.ecr.aws/docker/library/node:${{ matrix.node }}-slim yarn test
|
||||||
test-linux-x64-musl-binding:
|
# test-linux-x64-musl-binding:
|
||||||
name: Test bindings on x86_64-unknown-linux-musl - node@${{ matrix.node }}
|
# name: Test bindings on x86_64-unknown-linux-musl - node@${{ matrix.node }}
|
||||||
needs:
|
# needs:
|
||||||
- build
|
# - build
|
||||||
strategy:
|
# strategy:
|
||||||
fail-fast: false
|
# fail-fast: false
|
||||||
matrix:
|
# matrix:
|
||||||
node:
|
# node:
|
||||||
- "18"
|
# - "18"
|
||||||
- "20"
|
# - "20"
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v4
|
# - uses: actions/checkout@v4
|
||||||
- name: Setup node
|
# - name: Setup node
|
||||||
uses: actions/setup-node@v4
|
# uses: actions/setup-node@v4
|
||||||
with:
|
# with:
|
||||||
node-version: ${{ matrix.node }}
|
# node-version: ${{ matrix.node }}
|
||||||
cache: yarn
|
# cache: yarn
|
||||||
- name: Install dependencies
|
# - name: Install dependencies
|
||||||
run: |
|
# run: |
|
||||||
yarn config set supportedArchitectures.libc "musl"
|
# yarn config set supportedArchitectures.libc "musl"
|
||||||
yarn install
|
# yarn install
|
||||||
- name: Download artifacts
|
# - name: Download artifacts
|
||||||
uses: actions/download-artifact@v4
|
# uses: actions/download-artifact@v4
|
||||||
with:
|
# with:
|
||||||
name: bindings-x86_64-unknown-linux-musl
|
# name: bindings-x86_64-unknown-linux-musl
|
||||||
path: .
|
# path: .
|
||||||
- name: List packages
|
# - name: List packages
|
||||||
run: ls -R .
|
# run: ls -R .
|
||||||
shell: bash
|
# shell: bash
|
||||||
- name: Test bindings
|
# - name: Test bindings
|
||||||
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-alpine yarn test
|
# run: docker run --rm -v $(pwd):/build -w /build public.ecr.aws/docker/library/node:${{ matrix.node }}-alpine yarn test
|
||||||
test-linux-aarch64-gnu-binding:
|
# test-linux-aarch64-gnu-binding:
|
||||||
name: Test bindings on aarch64-unknown-linux-gnu - node@${{ matrix.node }}
|
# name: Test bindings on aarch64-unknown-linux-gnu - node@${{ matrix.node }}
|
||||||
needs:
|
# needs:
|
||||||
- build
|
# - build
|
||||||
strategy:
|
# strategy:
|
||||||
fail-fast: false
|
# fail-fast: false
|
||||||
matrix:
|
# matrix:
|
||||||
node:
|
# node:
|
||||||
- "18"
|
# - "18"
|
||||||
- "20"
|
# - "20"
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v4
|
# - uses: actions/checkout@v4
|
||||||
- name: Download artifacts
|
# - name: Download artifacts
|
||||||
uses: actions/download-artifact@v4
|
# uses: actions/download-artifact@v4
|
||||||
with:
|
# with:
|
||||||
name: bindings-aarch64-unknown-linux-gnu
|
# name: bindings-aarch64-unknown-linux-gnu
|
||||||
path: .
|
# path: .
|
||||||
- name: List packages
|
# - name: List packages
|
||||||
run: ls -R .
|
# run: ls -R .
|
||||||
shell: bash
|
# shell: bash
|
||||||
- name: Install dependencies
|
# - name: Install dependencies
|
||||||
run: |
|
# run: |
|
||||||
yarn config set supportedArchitectures.cpu "arm64"
|
# yarn config set supportedArchitectures.cpu "arm64"
|
||||||
yarn config set supportedArchitectures.libc "glibc"
|
# yarn config set supportedArchitectures.libc "glibc"
|
||||||
yarn install
|
# yarn install
|
||||||
- name: Set up QEMU
|
# - name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
# uses: docker/setup-qemu-action@v3
|
||||||
with:
|
# with:
|
||||||
platforms: arm64
|
# platforms: arm64
|
||||||
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
# - run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
||||||
- name: Setup and run tests
|
# - name: Setup and run tests
|
||||||
uses: addnab/docker-run-action@v3
|
# uses: addnab/docker-run-action@v3
|
||||||
with:
|
# with:
|
||||||
image: node:${{ matrix.node }}-slim
|
# image: public.ecr.aws/docker/library/node:${{ matrix.node }}-slim
|
||||||
options: "--platform linux/arm64 -v ${{ github.workspace }}:/build -w /build"
|
# options: "--platform linux/arm64 -v ${{ github.workspace }}:/build -w /build"
|
||||||
run: |
|
# run: |
|
||||||
set -e
|
# set -e
|
||||||
yarn test
|
# yarn test
|
||||||
ls -la
|
# ls -la
|
||||||
test-linux-aarch64-musl-binding:
|
# test-linux-aarch64-musl-binding:
|
||||||
name: Test bindings on aarch64-unknown-linux-musl - node@${{ matrix.node }}
|
# name: Test bindings on aarch64-unknown-linux-musl - node@${{ matrix.node }}
|
||||||
needs:
|
# needs:
|
||||||
- build
|
# - build
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v4
|
# - uses: actions/checkout@v4
|
||||||
- name: Download artifacts
|
# - name: Download artifacts
|
||||||
uses: actions/download-artifact@v4
|
# uses: actions/download-artifact@v4
|
||||||
with:
|
# with:
|
||||||
name: bindings-aarch64-unknown-linux-musl
|
# name: bindings-aarch64-unknown-linux-musl
|
||||||
path: .
|
# path: .
|
||||||
- name: List packages
|
# - name: List packages
|
||||||
run: ls -R .
|
# run: ls -R .
|
||||||
shell: bash
|
# shell: bash
|
||||||
- name: Install dependencies
|
# - name: Install dependencies
|
||||||
run: |
|
# run: |
|
||||||
yarn config set supportedArchitectures.cpu "arm64"
|
# yarn config set supportedArchitectures.cpu "arm64"
|
||||||
yarn config set supportedArchitectures.libc "musl"
|
# yarn config set supportedArchitectures.libc "musl"
|
||||||
yarn install
|
# yarn install
|
||||||
- name: Set up QEMU
|
# - name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
# uses: docker/setup-qemu-action@v3
|
||||||
with:
|
# with:
|
||||||
platforms: arm64
|
# platforms: arm64
|
||||||
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
# - run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
||||||
- name: Setup and run tests
|
# - name: Setup and run tests
|
||||||
uses: addnab/docker-run-action@v3
|
# uses: addnab/docker-run-action@v3
|
||||||
with:
|
# with:
|
||||||
image: node:lts-alpine
|
# image: node:lts-alpine
|
||||||
options: "--platform linux/arm64 -v ${{ github.workspace }}:/build -w /build"
|
# options: "--platform linux/arm64 -v ${{ github.workspace }}:/build -w /build"
|
||||||
run: |
|
# run: |
|
||||||
set -e
|
# set -e
|
||||||
yarn test
|
# yarn test
|
||||||
test-linux-arm-gnueabihf-binding:
|
# test-linux-arm-gnueabihf-binding:
|
||||||
name: Test bindings on armv7-unknown-linux-gnueabihf - node@${{ matrix.node }}
|
# name: Test bindings on armv7-unknown-linux-gnueabihf - node@${{ matrix.node }}
|
||||||
needs:
|
# needs:
|
||||||
- build
|
# - build
|
||||||
strategy:
|
# strategy:
|
||||||
fail-fast: false
|
# fail-fast: false
|
||||||
matrix:
|
# matrix:
|
||||||
node:
|
# node:
|
||||||
- "18"
|
# - "18"
|
||||||
- "20"
|
# - "20"
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v4
|
# - uses: actions/checkout@v4
|
||||||
- name: Download artifacts
|
# - name: Download artifacts
|
||||||
uses: actions/download-artifact@v4
|
# uses: actions/download-artifact@v4
|
||||||
with:
|
# with:
|
||||||
name: bindings-armv7-unknown-linux-gnueabihf
|
# name: bindings-armv7-unknown-linux-gnueabihf
|
||||||
path: .
|
# path: .
|
||||||
- name: List packages
|
# - name: List packages
|
||||||
run: ls -R .
|
# run: ls -R .
|
||||||
shell: bash
|
# shell: bash
|
||||||
- name: Install dependencies
|
# - name: Install dependencies
|
||||||
run: |
|
# run: |
|
||||||
yarn config set supportedArchitectures.cpu "arm"
|
# yarn config set supportedArchitectures.cpu "arm"
|
||||||
yarn install
|
# yarn install
|
||||||
- name: Set up QEMU
|
# - name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
# uses: docker/setup-qemu-action@v3
|
||||||
with:
|
# with:
|
||||||
platforms: arm
|
# platforms: arm
|
||||||
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
# - run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
||||||
- name: Setup and run tests
|
# - name: Setup and run tests
|
||||||
uses: addnab/docker-run-action@v3
|
# uses: addnab/docker-run-action@v3
|
||||||
with:
|
# with:
|
||||||
image: node:${{ matrix.node }}-bullseye-slim
|
# image: public.ecr.aws/docker/library/node:${{ matrix.node }}-bullseye-slim
|
||||||
options: "--platform linux/arm/v7 -v ${{ github.workspace }}:/build -w /build"
|
# options: "--platform linux/arm/v7 -v ${{ github.workspace }}:/build -w /build"
|
||||||
run: |
|
# run: |
|
||||||
set -e
|
# set -e
|
||||||
yarn test
|
# yarn test
|
||||||
ls -la
|
# ls -la
|
||||||
universal-macOS:
|
universal-macOS:
|
||||||
name: Build universal macOS binary
|
name: Build universal macOS binary
|
||||||
needs:
|
needs:
|
||||||
@ -377,11 +371,11 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs:
|
needs:
|
||||||
- test-macOS-windows-binding
|
- test-macOS-windows-binding
|
||||||
- test-linux-x64-gnu-binding
|
# - test-linux-x64-gnu-binding
|
||||||
- test-linux-x64-musl-binding
|
# - test-linux-x64-musl-binding
|
||||||
- test-linux-aarch64-gnu-binding
|
# - test-linux-aarch64-gnu-binding
|
||||||
- test-linux-aarch64-musl-binding
|
# - test-linux-aarch64-musl-binding
|
||||||
- test-linux-arm-gnueabihf-binding
|
# - test-linux-arm-gnueabihf-binding
|
||||||
- universal-macOS
|
- universal-macOS
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|||||||
@ -1,3 +0,0 @@
|
|||||||
# `@drop/droplet-android-arm-eabi`
|
|
||||||
|
|
||||||
This is the **armv7-linux-androideabi** binary for `@drop/droplet`
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "@drop/droplet-android-arm-eabi",
|
|
||||||
"version": "0.0.0",
|
|
||||||
"os": [
|
|
||||||
"android"
|
|
||||||
],
|
|
||||||
"cpu": [
|
|
||||||
"arm"
|
|
||||||
],
|
|
||||||
"main": "droplet.android-arm-eabi.node",
|
|
||||||
"files": [
|
|
||||||
"droplet.android-arm-eabi.node"
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 10"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,3 +0,0 @@
|
|||||||
# `@drop/droplet-android-arm64`
|
|
||||||
|
|
||||||
This is the **aarch64-linux-android** binary for `@drop/droplet`
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "@drop/droplet-android-arm64",
|
|
||||||
"version": "0.0.0",
|
|
||||||
"os": [
|
|
||||||
"android"
|
|
||||||
],
|
|
||||||
"cpu": [
|
|
||||||
"arm64"
|
|
||||||
],
|
|
||||||
"main": "droplet.android-arm64.node",
|
|
||||||
"files": [
|
|
||||||
"droplet.android-arm64.node"
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 10"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,3 +1,3 @@
|
|||||||
# `@drop/droplet-darwin-arm64`
|
# `@drop-oss/droplet-darwin-arm64`
|
||||||
|
|
||||||
This is the **aarch64-apple-darwin** binary for `@drop/droplet`
|
This is the **aarch64-apple-darwin** binary for `@drop-oss/droplet`
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@drop/droplet-darwin-arm64",
|
"name": "@drop-oss/droplet-darwin-arm64",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"os": [
|
"os": [
|
||||||
"darwin"
|
"darwin"
|
||||||
@ -14,5 +14,8 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 10"
|
"node": ">= 10"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"url": "https://github.com/Drop-OSS/droplet"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
# `@drop/droplet-darwin-universal`
|
# `@drop-oss/droplet-darwin-universal`
|
||||||
|
|
||||||
This is the **universal-apple-darwin** binary for `@drop/droplet`
|
This is the **universal-apple-darwin** binary for `@drop-oss/droplet`
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@drop/droplet-darwin-universal",
|
"name": "@drop-oss/droplet-darwin-universal",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"os": [
|
"os": [
|
||||||
"darwin"
|
"darwin"
|
||||||
@ -11,5 +11,8 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 10"
|
"node": ">= 10"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"url": "https://github.com/Drop-OSS/droplet"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
# `@drop/droplet-darwin-x64`
|
# `@drop-oss/droplet-darwin-x64`
|
||||||
|
|
||||||
This is the **x86_64-apple-darwin** binary for `@drop/droplet`
|
This is the **x86_64-apple-darwin** binary for `@drop-oss/droplet`
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@drop/droplet-darwin-x64",
|
"name": "@drop-oss/droplet-darwin-x64",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"os": [
|
"os": [
|
||||||
"darwin"
|
"darwin"
|
||||||
@ -14,5 +14,8 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 10"
|
"node": ">= 10"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"url": "https://github.com/Drop-OSS/droplet"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +0,0 @@
|
|||||||
# `@drop/droplet-freebsd-x64`
|
|
||||||
|
|
||||||
This is the **x86_64-unknown-freebsd** binary for `@drop/droplet`
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "@drop/droplet-freebsd-x64",
|
|
||||||
"version": "0.0.0",
|
|
||||||
"os": [
|
|
||||||
"freebsd"
|
|
||||||
],
|
|
||||||
"cpu": [
|
|
||||||
"x64"
|
|
||||||
],
|
|
||||||
"main": "droplet.freebsd-x64.node",
|
|
||||||
"files": [
|
|
||||||
"droplet.freebsd-x64.node"
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 10"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,3 +1,3 @@
|
|||||||
# `@drop/droplet-linux-arm-gnueabihf`
|
# `@drop-oss/droplet-linux-arm-gnueabihf`
|
||||||
|
|
||||||
This is the **armv7-unknown-linux-gnueabihf** binary for `@drop/droplet`
|
This is the **armv7-unknown-linux-gnueabihf** binary for `@drop-oss/droplet`
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@drop/droplet-linux-arm-gnueabihf",
|
"name": "@drop-oss/droplet-linux-arm-gnueabihf",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"os": [
|
"os": [
|
||||||
"linux"
|
"linux"
|
||||||
@ -14,5 +14,8 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 10"
|
"node": ">= 10"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"url": "https://github.com/Drop-OSS/droplet"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
# `@drop/droplet-linux-arm-musleabihf`
|
# `@drop-oss/droplet-linux-arm-musleabihf`
|
||||||
|
|
||||||
This is the **armv7-unknown-linux-musleabihf** binary for `@drop/droplet`
|
This is the **armv7-unknown-linux-musleabihf** binary for `@drop-oss/droplet`
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@drop/droplet-linux-arm-musleabihf",
|
"name": "@drop-oss/droplet-linux-arm-musleabihf",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"os": [
|
"os": [
|
||||||
"linux"
|
"linux"
|
||||||
@ -14,5 +14,8 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 10"
|
"node": ">= 10"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"url": "https://github.com/Drop-OSS/droplet"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
# `@drop/droplet-linux-arm64-gnu`
|
# `@drop-oss/droplet-linux-arm64-gnu`
|
||||||
|
|
||||||
This is the **aarch64-unknown-linux-gnu** binary for `@drop/droplet`
|
This is the **aarch64-unknown-linux-gnu** binary for `@drop-oss/droplet`
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@drop/droplet-linux-arm64-gnu",
|
"name": "@drop-oss/droplet-linux-arm64-gnu",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"os": [
|
"os": [
|
||||||
"linux"
|
"linux"
|
||||||
@ -17,5 +17,8 @@
|
|||||||
},
|
},
|
||||||
"libc": [
|
"libc": [
|
||||||
"glibc"
|
"glibc"
|
||||||
]
|
],
|
||||||
}
|
"repository": {
|
||||||
|
"url": "https://github.com/Drop-OSS/droplet"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
# `@drop/droplet-linux-arm64-musl`
|
# `@drop-oss/droplet-linux-arm64-musl`
|
||||||
|
|
||||||
This is the **aarch64-unknown-linux-musl** binary for `@drop/droplet`
|
This is the **aarch64-unknown-linux-musl** binary for `@drop-oss/droplet`
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@drop/droplet-linux-arm64-musl",
|
"name": "@drop-oss/droplet-linux-arm64-musl",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"os": [
|
"os": [
|
||||||
"linux"
|
"linux"
|
||||||
@ -17,5 +17,8 @@
|
|||||||
},
|
},
|
||||||
"libc": [
|
"libc": [
|
||||||
"musl"
|
"musl"
|
||||||
]
|
],
|
||||||
}
|
"repository": {
|
||||||
|
"url": "https://github.com/Drop-OSS/droplet"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
# `@drop/droplet-linux-riscv64-gnu`
|
# `@drop-oss/droplet-linux-riscv64-gnu`
|
||||||
|
|
||||||
This is the **riscv64gc-unknown-linux-gnu** binary for `@drop/droplet`
|
This is the **riscv64gc-unknown-linux-gnu** binary for `@drop-oss/droplet`
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@drop/droplet-linux-riscv64-gnu",
|
"name": "@drop-oss/droplet-linux-riscv64-gnu",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"os": [
|
"os": [
|
||||||
"linux"
|
"linux"
|
||||||
@ -17,5 +17,8 @@
|
|||||||
},
|
},
|
||||||
"libc": [
|
"libc": [
|
||||||
"glibc"
|
"glibc"
|
||||||
]
|
],
|
||||||
}
|
"repository": {
|
||||||
|
"url": "https://github.com/Drop-OSS/droplet"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
# `@drop/droplet-linux-x64-gnu`
|
# `@drop-oss/droplet-linux-x64-gnu`
|
||||||
|
|
||||||
This is the **x86_64-unknown-linux-gnu** binary for `@drop/droplet`
|
This is the **x86_64-unknown-linux-gnu** binary for `@drop-oss/droplet`
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@drop/droplet-linux-x64-gnu",
|
"name": "@drop-oss/droplet-linux-x64-gnu",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"os": [
|
"os": [
|
||||||
"linux"
|
"linux"
|
||||||
@ -17,5 +17,8 @@
|
|||||||
},
|
},
|
||||||
"libc": [
|
"libc": [
|
||||||
"glibc"
|
"glibc"
|
||||||
]
|
],
|
||||||
}
|
"repository": {
|
||||||
|
"url": "https://github.com/Drop-OSS/droplet"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
# `@drop/droplet-linux-x64-musl`
|
# `@drop-oss/droplet-linux-x64-musl`
|
||||||
|
|
||||||
This is the **x86_64-unknown-linux-musl** binary for `@drop/droplet`
|
This is the **x86_64-unknown-linux-musl** binary for `@drop-oss/droplet`
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@drop/droplet-linux-x64-musl",
|
"name": "@drop-oss/droplet-linux-x64-musl",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"os": [
|
"os": [
|
||||||
"linux"
|
"linux"
|
||||||
@ -17,5 +17,8 @@
|
|||||||
},
|
},
|
||||||
"libc": [
|
"libc": [
|
||||||
"musl"
|
"musl"
|
||||||
]
|
],
|
||||||
}
|
"repository": {
|
||||||
|
"url": "https://github.com/Drop-OSS/droplet"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
# `@drop/droplet-win32-arm64-msvc`
|
# `@drop-oss/droplet-win32-arm64-msvc`
|
||||||
|
|
||||||
This is the **aarch64-pc-windows-msvc** binary for `@drop/droplet`
|
This is the **aarch64-pc-windows-msvc** binary for `@drop-oss/droplet`
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@drop/droplet-win32-arm64-msvc",
|
"name": "@drop-oss/droplet-win32-arm64-msvc",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"os": [
|
"os": [
|
||||||
"win32"
|
"win32"
|
||||||
@ -14,5 +14,8 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 10"
|
"node": ">= 10"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"url": "https://github.com/Drop-OSS/droplet"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +0,0 @@
|
|||||||
# `@drop/droplet-win32-ia32-msvc`
|
|
||||||
|
|
||||||
This is the **i686-pc-windows-msvc** binary for `@drop/droplet`
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "@drop/droplet-win32-ia32-msvc",
|
|
||||||
"version": "0.0.0",
|
|
||||||
"os": [
|
|
||||||
"win32"
|
|
||||||
],
|
|
||||||
"cpu": [
|
|
||||||
"ia32"
|
|
||||||
],
|
|
||||||
"main": "droplet.win32-ia32-msvc.node",
|
|
||||||
"files": [
|
|
||||||
"droplet.win32-ia32-msvc.node"
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 10"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,3 +1,3 @@
|
|||||||
# `@drop/droplet-win32-x64-msvc`
|
# `@drop-oss/droplet-win32-x64-msvc`
|
||||||
|
|
||||||
This is the **x86_64-pc-windows-msvc** binary for `@drop/droplet`
|
This is the **x86_64-pc-windows-msvc** binary for `@drop-oss/droplet`
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@drop/droplet-win32-x64-msvc",
|
"name": "@drop-oss/droplet-win32-x64-msvc",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"os": [
|
"os": [
|
||||||
"win32"
|
"win32"
|
||||||
@ -14,5 +14,8 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 10"
|
"node": ">= 10"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"url": "https://github.com/Drop-OSS/droplet"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
11
package.json
11
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@drop-oss/droplet",
|
"name": "@drop-oss/droplet",
|
||||||
"version": "0.7.0",
|
"version": "0.7.2",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"types": "index.d.ts",
|
"types": "index.d.ts",
|
||||||
"napi": {
|
"napi": {
|
||||||
@ -8,16 +8,12 @@
|
|||||||
"triples": {
|
"triples": {
|
||||||
"additional": [
|
"additional": [
|
||||||
"aarch64-apple-darwin",
|
"aarch64-apple-darwin",
|
||||||
"aarch64-linux-android",
|
|
||||||
"aarch64-unknown-linux-gnu",
|
"aarch64-unknown-linux-gnu",
|
||||||
"aarch64-unknown-linux-musl",
|
"aarch64-unknown-linux-musl",
|
||||||
"aarch64-pc-windows-msvc",
|
"aarch64-pc-windows-msvc",
|
||||||
"armv7-unknown-linux-gnueabihf",
|
"armv7-unknown-linux-gnueabihf",
|
||||||
"armv7-unknown-linux-musleabihf",
|
"armv7-unknown-linux-musleabihf",
|
||||||
"x86_64-unknown-linux-musl",
|
"x86_64-unknown-linux-musl",
|
||||||
"x86_64-unknown-freebsd",
|
|
||||||
"i686-pc-windows-msvc",
|
|
||||||
"armv7-linux-androideabi",
|
|
||||||
"universal-apple-darwin",
|
"universal-apple-darwin",
|
||||||
"riscv64gc-unknown-linux-gnu"
|
"riscv64gc-unknown-linux-gnu"
|
||||||
]
|
]
|
||||||
@ -44,5 +40,8 @@
|
|||||||
"universal": "napi universal",
|
"universal": "napi universal",
|
||||||
"version": "napi version"
|
"version": "napi version"
|
||||||
},
|
},
|
||||||
"packageManager": "yarn@4.7.0"
|
"packageManager": "yarn@4.7.0",
|
||||||
|
"repository": {
|
||||||
|
"url": "https://github.com/Drop-OSS/droplet"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user