Skip to content

Commit c7369ca

Browse files
Merge pull request pattern-lab#79 from pattern-lab/issues/17-dep
Postinstall error prevents use of edition-node-gulp (v1.3.1) as a dep…
2 parents 77be1e6 + f264dd8 commit c7369ca

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"bugs": "https://github.com/pattern-lab/edition-node-gulp/issues",
2525
"author": "Brian Muenzenmeyer",
2626
"scripts": {
27-
"postinstall": "node node_modules/patternlab-node/core/scripts/postinstall.js"
27+
"postinstall": "node scripts/postinstall.js"
2828
},
2929
"license": "MIT",
3030
"engines": {

scripts/postinstall.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
"use strict";
2+
console.log('Beginning Pattern Lab Node Gulp postinstall...');
3+
4+
//call the core library postinstall
5+
var patternlab = require('patternlab-node/core/scripts/postinstall');

0 commit comments

Comments
 (0)