Socket
Socket
Sign inDemoInstall

new-github-release-url

Package Overview
Dependencies
1
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.0 to 1.0.0

index.d.ts

17

package.json
{
"name": "new-github-release-url",
"version": "0.1.0",
"version": "1.0.0",
"description": "Generate a URL for opening a new GitHub release with prefilled tag, body, and other fields",

@@ -16,7 +16,8 @@ "license": "MIT",

"scripts": {
"test": "xo && ava",
"test": "xo && ava && tsd",
"start": "node example.js"
},
"files": [
"index.js"
"index.js",
"index.d.ts"
],

@@ -36,7 +37,11 @@ "keywords": [

],
"dependencies": {
"type-fest": "^0.4.1"
},
"devDependencies": {
"ava": "^0.25.0",
"opn": "^5.4.0",
"xo": "^0.23.0"
"ava": "^1.4.1",
"open": "^6.1.0",
"tsd": "^0.7.2",
"xo": "^0.24.0"
}
}

@@ -19,3 +19,3 @@ # new-github-release-url [![Build Status](https://travis-ci.com/sindresorhus/new-github-release-url.svg?branch=master)](https://travis-ci.com/sindresorhus/new-github-release-url)

const newGithubReleaseUrl = require('new-github-release-url');
const opn = require('opn');
const open = require('open');

@@ -30,3 +30,3 @@ const url = newGithubReleaseUrl({

// Then open it
opn(url);
open(url);
```

@@ -43,3 +43,3 @@

Type: `Object`
Type: `object`

@@ -46,0 +46,0 @@ You are required to either specify the `repoUrl` option or both the `user` and `repo` options.

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc