Skip to content
This repository has been archived by the owner on Dec 10, 2019. It is now read-only.

Postinstall error prevents use of edition-node-gulp (v1.3.1) as a dep… #79

Merged
merged 1 commit into from
Sep 27, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"bugs": "https://github.com/pattern-lab/edition-node-gulp/issues",
"author": "Brian Muenzenmeyer",
"scripts": {
"postinstall": "node node_modules/patternlab-node/core/scripts/postinstall.js"
"postinstall": "node scripts/postinstall.js"
},
"license": "MIT",
"engines": {
Expand Down
5 changes: 5 additions & 0 deletions scripts/postinstall.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"use strict";
console.log('Beginning Pattern Lab Node Gulp postinstall...');

//call the core library postinstall
var patternlab = require('patternlab-node/core/scripts/postinstall');