Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@btmills/release-please-test

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@btmills/release-please-test - npm Package Compare versions

Comparing version 1.0.0 to 1.1.3

.github/workflows/release.yml

6

index.js

@@ -0,3 +1,9 @@

/** Returns forty-two. */
export default function fortyTwo() {
return 42;
}
/** Returns forty-three. */
export function fortyThree() {
return 43;
}

2

package.json
{
"name": "@btmills/release-please-test",
"version": "1.0.0",
"version": "1.1.3",
"description": "Just a test",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/btmills/release-please-test#readme",

import assert from 'node:assert';
import test from 'node:test';
import fortyTwo from './index.js';
import fortyTwo, { fortyThree } from './index.js';

@@ -9,1 +9,5 @@ test('returns 42', t => {

});
test('returns 43', t => {
assert.strictEqual(fortyThree(), 43);
});
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc