-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
24 lines (24 loc) · 1 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module.exports = {
complete: ({directory, name}) => {
console.log();
console.log('Success! Created ' + name + ' at ' + directory);
console.log();
console.log('Inside that directory, you can run several NPM commands, including:');
console.log(' npm run serve');
console.log(' Starts the development server and Electron shell using it.');
console.log(' npm run pack');
console.log(' Bundles the renderer into static files in development mode.');
console.log(' npm run pack-p');
console.log(' Bundles the renderer into static files in production mode.');
console.log(' npm run electron');
console.log(' Runs the latest built renderer bundle in Electron.');
console.log(' npm run build');
console.log(' Build a standalone Electron app installer package.');
console.log(' npm run test');
console.log(' Starts the test runner.');
console.log();
console.log('Refer to https://electronjs.org/docs/api for more details on Electron APIs.');
console.log();
console.log('Have fun!');
}
};