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

Commit ee7c289

Browse files
Merge pull request #80 from pattern-lab/dev
Edition Node Gulp 1.3.2
2 parents 7435b3c + 362b800 commit ee7c289

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "edition-node-gulp",
33
"description": "The gulp wrapper around patternlab-node core, providing tasks to interact with the core library and move supporting frontend assets.",
4-
"version": "1.3.1",
4+
"version": "1.3.2",
55
"dependencies": {
66
"browser-sync": "^2.0.0",
77
"gulp": "gulpjs/gulp#4.0",
@@ -24,7 +24,8 @@
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",
28+
"gulp": "gulp -- "
2829
},
2930
"license": "MIT",
3031
"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)