Skip to content

Commit d1688dd

Browse files
author
Valentin Knabel
committed
Upgraded to Angular ^2.0.0
1 parent f0a72db commit d1688dd

File tree

4 files changed

+30
-20
lines changed

4 files changed

+30
-20
lines changed

index.ts

+8-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
1-
import {Pipe, PipeTransform} from '@angular/core';
2-
import marked = require('marked');
1+
export * from './src/markdown-to-html.pipe';
32

4-
@Pipe({
5-
name: 'MarkdownToHtml'
6-
})
7-
8-
export class MarkdownToHtmlPipe implements PipeTransform {
9-
public transform(markdown: string, options?: MarkedOptions): string {
10-
if (markdown == null) return '';
11-
return marked(markdown, options);
12-
}
3+
import { NgModule } from '@angular/core';
4+
import { MarkdownToHtmlPipe } from './src/markdown-to-html.pipe';
135

14-
public static setOptions(options: MarkedOptions): void {
15-
marked.setOptions(options);
16-
}
17-
}
6+
@NgModule({
7+
declarations: [MarkdownToHtmlPipe],
8+
exports: [MarkdownToHtmlPipe]
9+
})
10+
export class MarkdownToHtmlModule { }

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "markdown-to-html-pipe",
3-
"version": "1.0.2",
3+
"version": "1.1.2",
44
"description": "Angular 2 Pipe that transforms a markdown string to HTML",
55
"main": "index.js",
66
"scripts": {
@@ -25,19 +25,19 @@
2525
},
2626
"homepage": "https://github.com/conclurer/markdown-to-html-pipe#readme",
2727
"devDependencies": {
28-
"@angular/core": "^2.0.0-rc.6",
28+
"@angular/core": "^2.0.0",
2929
"@types/es6-shim": "0.0.29",
3030
"@types/marked": "0.0.27",
3131
"@types/tape": "^4.2.27",
3232
"reflect-metadata": "^0.1.8",
33-
"rxjs": "^5.0.0-beta.11",
33+
"rxjs": "^5.0.0-beta.12",
3434
"tape": "^4.6.0",
3535
"tslint": "^3.14.0",
3636
"typescript": "^2.0.0",
3737
"zone.js": "^0.6.14"
3838
},
3939
"peerDependencies": {
40-
"@angular/core": "^2.0.0-rc.6"
40+
"@angular/core": "^2.0.0"
4141
},
4242
"dependencies": {
4343
"marked": "^0.3.6"

src/markdown-to-html.pipe.ts

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import {Pipe, PipeTransform} from '@angular/core';
2+
import marked = require('marked');
3+
4+
@Pipe({
5+
name: 'MarkdownToHtml'
6+
})
7+
8+
export class MarkdownToHtmlPipe implements PipeTransform {
9+
public transform(markdown: string, options?: MarkedOptions): string {
10+
if (markdown == null) return '';
11+
return marked(markdown, options);
12+
}
13+
14+
public static setOptions(options: MarkedOptions): void {
15+
marked.setOptions(options);
16+
}
17+
}

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"sourceMap": false,
77
"experimentalDecorators": true,
88
"strictNullChecks": false,
9-
"declaration": true
9+
"declaration": false
1010
},
1111
"exclude": [
1212
"node_modules"

0 commit comments

Comments
 (0)