Skip to content

Commit 6c7f989

Browse files
committed
Add build
1 parent 2009434 commit 6c7f989

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build/README.pdf

gulpfile.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/* global require */
2+
3+
'use strict';
4+
5+
var gulp = require('gulp'),
6+
markdownpdf = require('gulp-markdown-pdf');
7+
8+
gulp.task('default', function () {
9+
return gulp.src('README.md')
10+
.pipe(markdownpdf())
11+
.pipe(gulp.dest('build'));
12+
});

package.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "angularjs-in-patterns",
3+
"version": "0.0.0",
4+
"description": "AngularJS in patterns - this repository provides different look into AngularJS. It contains information where different design patterns are used inside the framework or any AngularJS application.",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git://github.com/mgechev/angularjs-patterns.git"
12+
},
13+
"author": "mgechev",
14+
"license": "MIT",
15+
"gitHead": "2009434a6dfdbe5f06f81253fb853840af753b36",
16+
"readmeFilename": "README.md",
17+
"devDependencies": {
18+
"gulp": "^3.8.10",
19+
"gulp-markdown-pdf": "^1.0.1"
20+
}
21+
}

0 commit comments

Comments
 (0)