Skip to content

Commit

Permalink
build: migrate from electron-notarize to @electron/notarize
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Oct 20, 2022
1 parent c843e08 commit ac37978
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ Electron Notarize
> Notarize your Electron apps seamlessly for macOS
[![CircleCI status](https://circleci.com/gh/electron/notarize.svg?style=shield)](https://circleci.com/gh/electron/notarize)
[![NPM package](https://img.shields.io/npm/v/electron-notarize)](https://npm.im/electron-notarize)
[![NPM package](https://img.shields.io/npm/v/@electron/notarize)](https://npm.im/@electron/notarize)

## Installation

```bash
# npm
npm install electron-notarize --save-dev
npm install @electron/notarize --save-dev

# yarn
yarn add electron-notarize --dev
yarn add @electron/notarize --dev
```

## What is app "notarization"?
Expand Down Expand Up @@ -117,7 +117,7 @@ Alternatively, with older versions of Xcode, run:
## Example Usage

```javascript
import { notarize } from 'electron-notarize';
import { notarize } from '@electron/notarize';

async function packageTask () {
// Package your app here, and code sign with hardened runtime
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "electron-notarize",
"name": "@electron/notarize",
"version": "0.0.0-development",
"description": "Notarize your Electron app",
"main": "lib/index.js",
Expand Down

0 comments on commit ac37978

Please sign in to comment.