Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit e701350

Browse files
Merge pull request #14 from pattern-lab/dev
Edition Node Grunt 1.1.0
2 parents e0456cd + 43fbf65 commit e701350

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ There are two methods for downloading and installing the Grunt Edition:
2626

2727
### Download a pre-built package
2828

29-
The fastest way to get started with the Grunt Edition is to [download the pre-built version](https://github.com/pattern-lab/edition-node-gulp/releases) from the [releases page](https://github.com/pattern-lab/edition-node-gulp/releases). The pre-built project comes with the [Base Starterkit for Mustache](https://github.com/pattern-lab/starterkit-mustache-base) installed by default.
29+
The fastest way to get started with the Grunt Edition is to [download the pre-built version](https://github.com/pattern-lab/edition-node-grunt/releases) from the [releases page](https://github.com/pattern-lab/edition-node-grunt/releases). The pre-built project comes with the [Base Starterkit for Mustache](https://github.com/pattern-lab/starterkit-mustache-base) installed by default.
3030

3131
**Please note:** Pattern Lab Node uses [npm](https://www.npmjs.com/) to manage project dependencies. To upgrade the Grunt Edition or to install plug-ins you'll need to be familiar with npm.
3232

@@ -56,6 +56,12 @@ Use npm's [`install` command](https://docs.npmjs.com/cli/install) with an argume
5656
5757
This will install the Grunt Edition into a directory called `node_modules` in `install/location/`.
5858
59+
## Getting started
60+
61+
The Pattern Lab Node - Grunt Edition ships with a [base experience](https://github.com/pattern-lab/starterkit-mustache-base) which serves as clean place to start from scratch with Pattern Lab. But if you want to get rolling with a starterkit of your own, or use the [demo starterkit](https://github.com/pattern-lab/starterkit-mustache-demo) like the one on [demo.patternlab.io](http://demo.patternlab.io), you can do so automatically at time of `npm install` by adding your starterkit to the `package.json` file.
62+
63+
You can also [work with starterkits using the command line](https://github.com/pattern-lab/patternlab-node/wiki/Importing-Starterkits).
64+
5965
## Updating Pattern Lab
6066
6167
To update Pattern Lab please refer to each component's GitHub repository, and the [master instructions for core](https://github.com/pattern-lab/patternlab-node/wiki/Upgrading). The components are listed at the top of the README.

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "edition-node-grunt",
33
"description": "The grunt wrapper around patternlab-node core, providing tasks to interact with the core library and move supporting frontend assets.",
4-
"version": "1.0.1",
4+
"version": "1.1.0",
55
"main": "./core/lib/patternlab.js",
66
"dependencies": {
77
"bs-html-injector": "^3.0.0",
@@ -27,6 +27,9 @@
2727
},
2828
"bugs": "https://github.com/pattern-lab/edition-node-grunt/issues",
2929
"author": "Brian Muenzenmeyer",
30+
"scripts": {
31+
"postinstall": "node node_modules/patternlab-node/core/scripts/postinstall.js"
32+
},
3033
"license": "MIT",
3134
"engines": {
3235
"node": ">=5.0"

patternlab-config.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,10 @@
6464
"patternExportDirectory": "./pattern_exports/",
6565
"baseurl" : "",
6666
"cacheBust": true,
67-
"starterkitSubDir": "dist"
67+
"starterkitSubDir": "dist",
68+
"outputFileSuffixes": {
69+
"rendered": "",
70+
"rawTemplate": "",
71+
"markupOnly": ".markup-only"
72+
}
6873
}

0 commit comments

Comments
 (0)