Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ChainSafe/xdelta3-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.0
Choose a base ref
...
head repository: ChainSafe/xdelta3-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 5 commits
  • 9 files changed
  • 1 contributor

Commits on Oct 9, 2024

  1. Remove .npmignore file

    nazarhussain committed Oct 9, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    b61f116 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    371bc47 View commit details
  3. Bump the version

    nazarhussain committed Oct 9, 2024
    Copy the full SHA
    1c92693 View commit details
  4. Merge pull request #6 from ChainSafe/nh/remove-pkg-artifacts

    Remove package artifacts from publishing
    nazarhussain authored Oct 9, 2024
    Copy the full SHA
    adb63f4 View commit details

Commits on Oct 10, 2024

  1. fix package type to commonjs (#7)

    * Fix package type
    
    * Bump version
    nazarhussain authored Oct 10, 2024
    Copy the full SHA
    7335e0c View commit details
10 changes: 0 additions & 10 deletions .npmignore

This file was deleted.

2 changes: 1 addition & 1 deletion npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainsafe/xdelta3-node-darwin-arm64",
"version": "1.0.0",
"version": "1.0.2",
"cpu": [
"arm64"
],
2 changes: 1 addition & 1 deletion npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainsafe/xdelta3-node-darwin-x64",
"version": "1.0.0",
"version": "1.0.2",
"cpu": [
"x64"
],
2 changes: 1 addition & 1 deletion npm/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainsafe/xdelta3-node-linux-arm64-gnu",
"version": "1.0.0",
"version": "1.0.2",
"cpu": [
"arm64"
],
2 changes: 1 addition & 1 deletion npm/linux-arm64-musl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainsafe/xdelta3-node-linux-arm64-musl",
"version": "1.0.0",
"version": "1.0.2",
"cpu": [
"arm64"
],
2 changes: 1 addition & 1 deletion npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainsafe/xdelta3-node-linux-x64-gnu",
"version": "1.0.0",
"version": "1.0.2",
"cpu": [
"x64"
],
2 changes: 1 addition & 1 deletion npm/linux-x64-musl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainsafe/xdelta3-node-linux-x64-musl",
"version": "1.0.0",
"version": "1.0.2",
"cpu": [
"x64"
],
2 changes: 1 addition & 1 deletion npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainsafe/xdelta3-node-win32-x64-msvc",
"version": "1.0.0",
"version": "1.0.2",
"cpu": [
"x64"
],
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@chainsafe/xdelta3-node",
"version": "1.0.0",
"type": "module",
"version": "1.0.2",
"type": "commonjs",
"description": "A xdelta3 native binding for Nodejs",
"license": "Apache-2.0",
"author": "ChainSafe Systems",
@@ -27,6 +27,10 @@
"engines": {
"node": ">= 10"
},
"files": [
"index.js",
"index.d.ts"
],
"dependencies": {},
"devDependencies": {
"@types/node": "^22.7.2",