Skip to content

Commit

Permalink
restructure source files into src directory, update to node-plop v0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
amwmedia committed Nov 28, 2016
1 parent 5ddc8d9 commit 4be2673
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "plop",
"version": "1.7.1",
"version": "1.7.2",
"description": "Micro-generator framework that makes it easy for an entire team to create files with a level of uniformity",
"main": "plop.js",
"main": "./src/plop.js",
"repository": {
"type": "git",
"url": "https://github.com/amwmedia/plop.git"
Expand Down Expand Up @@ -32,14 +32,14 @@
"interpret": "^1.0.0",
"liftoff": "^2.2.0",
"minimist": "^1.2.0",
"node-plop": "~0.5.2",
"node-plop": "~0.5.3",
"v8flags": "^2.0.10"
},
"engines": {
"node": ">=4.0"
},
"preferGlobal": "true",
"bin": {
"plop": "plop.js"
"plop": "./src/plop.js"
}
}
File renamed without changes.
4 changes: 2 additions & 2 deletions plop.js → src/plop.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ var interpret = require('interpret');
var chalk = require('chalk');

var nodePlop = require('node-plop');
var out = require('./mod/console-out');
var globalPkg = require('./package.json');
var out = require('./console-out');
var globalPkg = require('../package.json');
var generator = argv._.join(' ') || null;

var Plop = new Liftoff({
Expand Down

0 comments on commit 4be2673

Please sign in to comment.