actions-auto-publish-dep
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -18,2 +18,7 @@ 'use strict'; | ||
}; | ||
module.exports.hello = hello; | ||
module.exports.hello = hello; | ||
const world = () => { | ||
return 'World'; | ||
}; | ||
module.exports.world = world; |
{ | ||
"name": "actions-auto-publish-dep", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "A test setup of automatic publish to npm from github actions", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -11,3 +11,2 @@ 'use strict'; | ||
test('Index() - bar', (t) => { | ||
@@ -21,2 +20,7 @@ t.equal(index.bar(), 'beer', '.value should be "beer"'); | ||
t.end(); | ||
}); | ||
test('Index() - world', (t) => { | ||
t.equal(index.world(), 'World', '.value should be "World"'); | ||
t.end(); | ||
}); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3780
48