1.0.4 • Published 2 years ago

grunt-universal v1.0.4

Weekly downloads
3
License
-
Repository
github
Last release
2 years ago

grunt-universal

Grunt plugin for making universal macOS binaries using @electron/universal

Grunt

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-universal --save-dev

One the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-universal');

The "universal" task

Overview

In your project's Gruntfile, add a section named universal to the data object passed into grunt.initConfig().

grunt.initConfig({
    universal: {
        mac: {
            'x64AppPath': 'build/tmp/HTML5test-darwin-x64/HTML5test.app',
            'arm64AppPath': 'build/tmp/HTML5test-darwin-arm64/HTML5test.app',
            'outAppPath': 'build/tmp/HTML5test-darwin-universal/HTML5test.app',
        }
    }
})

For each app that you want to notarize you can add a section. Each sections has a couple of options that you need to set, such the path to your x64 binary .app, the path to your arm64 binary .app and the path where you want your universal binary.app to be created. These options are documented in the @electron/universal project. Please read their documentation carefully.

1.0.4

2 years ago

1.0.3

4 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago