0.5.0 • Published 3 years ago
@solec/ic-canister-plugin v0.5.0
IC Canister Plugin
Overview
A Webpack plugin to find your Internet Computer canister Ids and create environment variables for them.
Installation
$ npm i -D @solec/ic-canister-pluginUsage
In your webpack.config.js file, add this plugin to your plugins array:
const IcCanisterPlugin = require('@solec/ic-canister-plugin');
module.exports = {
plugins: [new IcCanisterPlugin()],
};Contributing
- Clone the repository
- Install npm modules
$ npm i - Commence hacking
- Stage your changes
$ git add . - Commit your changes
$ npm run commit