mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2025-04-26 21:38:26 -04:00
aka: don't delete binaries in node_modules folder, since they shouldn't change anyways (unless the package is also updated)
10 lines
220 B
JavaScript
10 lines
220 B
JavaScript
'use strict';
|
|
|
|
const bin = require('.');
|
|
|
|
bin.run(['version']).then(() => {
|
|
console.log('✔ Hugo installed successfully!');
|
|
}).catch(error => {
|
|
console.error('✖ ERROR: Hugo installation failed. :(\n', error);
|
|
});
|