@bluecadet/cadet
Advanced tools
Comparing version 1.0.0-alpha.0 to 1.0.0-alpha.1
@@ -9,4 +9,7 @@ | ||
exports.handler = function (args) { | ||
console.log('TODO: init-site') | ||
console.log(args); | ||
let InitSite = require('../../lib/init-site/init-site.js'); | ||
let initSite = new InitSite(args); | ||
initSite.run(); | ||
} |
@@ -9,4 +9,6 @@ | ||
exports.handler = function (args) { | ||
console.log('TODO: new-site') | ||
console.log(args); | ||
let NewSite = require('../../lib/new-site/new-site.js'); | ||
let newSite = new NewSite(args); | ||
newSite.run(); | ||
} |
@@ -9,4 +9,6 @@ | ||
exports.handler = function (args) { | ||
console.log('TODO: new-theme') | ||
console.log(args); | ||
let NewTheme = require('../../lib/new-theme/new-theme.js'); | ||
let newTheme = new NewTheme(args); | ||
newTheme.run(); | ||
} |
@@ -9,4 +9,6 @@ | ||
exports.handler = function (args) { | ||
console.log('TODO: pull') | ||
console.log(args); | ||
let Pull = require('../../lib/pull/pull.js'); | ||
let pull = new Pull(args); | ||
pull.run(); | ||
} |
@@ -8,3 +8,2 @@ const os = require('os'); | ||
function CiUpdate(args) { | ||
@@ -111,3 +110,2 @@ this.args = args; | ||
module.exports = CiUpdate; |
{ | ||
"name": "@bluecadet/cadet", | ||
"version": "1.0.0-alpha.0", | ||
"version": "1.0.0-alpha.1", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "bugs": { |
15625
16
454