Skip to content

Commit

Permalink
Merge pull request #11 from carbonteq/fix-publish-cfg
Browse files Browse the repository at this point in the history
fix publish cfg for auxilliary packages
  • Loading branch information
volf52 authored Aug 2, 2024
2 parents 4568fb0 + 102b571 commit 4e02f99
Show file tree
Hide file tree
Showing 6 changed files with 157 additions and 111 deletions.
5 changes: 5 additions & 0 deletions .changeset/shiny-clocks-vanish.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@carbonteq/jwt": patch
---

Fix binary module publishing
51 changes: 30 additions & 21 deletions npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,31 @@
{
"name": "@carbonteq/jwt-darwin-arm64",
"version": "0.5.0",
"os": [
"darwin"
],
"cpu": [
"arm64"
],
"main": "jwt.darwin-arm64.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"jwt.darwin-arm64.node"
],
"license": "MIT",
"engines": {
"node": ">= 16"
}
}
"name": "@carbonteq/jwt-darwin-arm64",
"version": "0.5.0",
"os": ["darwin"],
"cpu": ["arm64"],
"main": "jwt.darwin-arm64.node",
"files": ["jwt.darwin-arm64.node"],
"keywords": ["jwt", "jsonwebtoken", "napi", "napi-rs", "carbonteq", "N-API"],
"author": {
"name": "Muhammad Arslan",
"url": "https://github.com/volf52",
"email": "[email protected]"
},
"homepage": "https://github.com/carbonteq/jwt#readme",
"license": "MIT",
"engines": {
"node": ">= 16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/carbonteq/jwt"
},
"bugs": {
"url": "https://github.com/carbonteq/jwt/issues"
}
}

51 changes: 30 additions & 21 deletions npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,31 @@
{
"name": "@carbonteq/jwt-darwin-x64",
"version": "0.5.0",
"os": [
"darwin"
],
"cpu": [
"x64"
],
"main": "jwt.darwin-x64.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"jwt.darwin-x64.node"
],
"license": "MIT",
"engines": {
"node": ">= 16"
}
}
"name": "@carbonteq/jwt-darwin-x64",
"version": "0.5.0",
"os": ["darwin"],
"cpu": ["x64"],
"main": "jwt.darwin-x64.node",
"files": ["jwt.darwin-x64.node"],
"keywords": ["jwt", "jsonwebtoken", "napi", "napi-rs", "carbonteq", "N-API"],
"author": {
"name": "Muhammad Arslan",
"url": "https://github.com/volf52",
"email": "[email protected]"
},
"homepage": "https://github.com/carbonteq/jwt#readme",
"license": "MIT",
"engines": {
"node": ">= 16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/carbonteq/jwt"
},
"bugs": {
"url": "https://github.com/carbonteq/jwt/issues"
}
}

55 changes: 31 additions & 24 deletions npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,32 @@
{
"name": "@carbonteq/jwt-linux-x64-gnu",
"version": "0.5.0",
"os": [
"linux"
],
"cpu": [
"x64"
],
"main": "jwt.linux-x64-gnu.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"jwt.linux-x64-gnu.node"
],
"license": "MIT",
"engines": {
"node": ">= 16"
},
"libc": [
"glibc"
]
}
"name": "@carbonteq/jwt-linux-x64-gnu",
"version": "0.5.0",
"os": ["linux"],
"cpu": ["x64"],
"main": "jwt.linux-x64-gnu.node",
"files": ["jwt.linux-x64-gnu.node"],
"keywords": ["jwt", "jsonwebtoken", "napi", "napi-rs", "carbonteq", "N-API"],
"author": {
"name": "Muhammad Arslan",
"url": "https://github.com/volf52",
"email": "[email protected]"
},
"homepage": "https://github.com/carbonteq/jwt#readme",
"license": "MIT",
"engines": {
"node": ">= 16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/carbonteq/jwt"
},
"bugs": {
"url": "https://github.com/carbonteq/jwt/issues"
},
"libc": ["glibc"]
}

55 changes: 31 additions & 24 deletions npm/linux-x64-musl/package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,32 @@
{
"name": "@carbonteq/jwt-linux-x64-musl",
"version": "0.5.0",
"os": [
"linux"
],
"cpu": [
"x64"
],
"main": "jwt.linux-x64-musl.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"jwt.linux-x64-musl.node"
],
"license": "MIT",
"engines": {
"node": ">= 16"
},
"libc": [
"musl"
]
}
"name": "@carbonteq/jwt-linux-x64-musl",
"version": "0.5.0",
"os": ["linux"],
"cpu": ["x64"],
"main": "jwt.linux-x64-musl.node",
"files": ["jwt.linux-x64-musl.node"],
"keywords": ["jwt", "jsonwebtoken", "napi", "napi-rs", "carbonteq", "N-API"],
"author": {
"name": "Muhammad Arslan",
"url": "https://github.com/volf52",
"email": "[email protected]"
},
"homepage": "https://github.com/carbonteq/jwt#readme",
"license": "MIT",
"engines": {
"node": ">= 16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/carbonteq/jwt"
},
"bugs": {
"url": "https://github.com/carbonteq/jwt/issues"
},
"libc": ["musl"]
}

51 changes: 30 additions & 21 deletions npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,31 @@
{
"name": "@carbonteq/jwt-win32-x64-msvc",
"version": "0.5.0",
"os": [
"win32"
],
"cpu": [
"x64"
],
"main": "jwt.win32-x64-msvc.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"jwt.win32-x64-msvc.node"
],
"license": "MIT",
"engines": {
"node": ">= 16"
}
}
"name": "@carbonteq/jwt-win32-x64-msvc",
"version": "0.5.0",
"os": ["win32"],
"cpu": ["x64"],
"main": "jwt.win32-x64-msvc.node",
"files": ["jwt.win32-x64-msvc.node"],
"keywords": ["jwt", "jsonwebtoken", "napi", "napi-rs", "carbonteq", "N-API"],
"author": {
"name": "Muhammad Arslan",
"url": "https://github.com/volf52",
"email": "[email protected]"
},
"homepage": "https://github.com/carbonteq/jwt#readme",
"license": "MIT",
"engines": {
"node": ">= 16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/carbonteq/jwt"
},
"bugs": {
"url": "https://github.com/carbonteq/jwt/issues"
}
}

0 comments on commit 4e02f99

Please sign in to comment.