@btmills/release-please-test
Advanced tools
Comparing version 1.0.0 to 1.1.3
@@ -0,3 +1,9 @@ | ||
/** Returns forty-two. */ | ||
export default function fortyTwo() { | ||
return 42; | ||
} | ||
/** Returns forty-three. */ | ||
export function fortyThree() { | ||
return 43; | ||
} |
{ | ||
"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); | ||
}); |
Trivial Package
Supply chain riskPackages less than 10 lines of code are easily copied into your own project and may not warrant the additional supply chain risk of an external dependency.
Found 1 instance in 1 package
3191
6
17
0