From 08a46846bc9b7630491cc42f97f2d80fec6058a7 Mon Sep 17 00:00:00 2001 From: Roman Hotsiy Date: Tue, 26 Jul 2016 11:57:33 +0300 Subject: [PATCH] install slugify --- package.json | 2 ++ system.config.js | 1 + typings/slugify.d.ts | 4 ++++ 3 files changed, 7 insertions(+) create mode 100644 typings/slugify.d.ts diff --git a/package.json b/package.json index 8c490574..493d84bb 100644 --- a/package.json +++ b/package.json @@ -48,6 +48,7 @@ "remarkable": "npm:remarkable@^1.6.2", "rxjs": "npm:rxjs@5.0.0-beta.6", "scrollparent": "npm:scrollparent@^0.1.0", + "slugify": "npm:slugify@^0.1.1", "stream-http": "npm:stream-http@^2.3.0", "zone.js": "npm:zone.js@0.6.12" }, @@ -132,6 +133,7 @@ "shelljs": "^0.7.0", "should": "^9.0.2", "sinon": "^1.17.2", + "slugify": "^0.1.1", "systemjs-builder": "^0.15.16", "tslint": "^3.13.0", "tslint-stylish": "^2.1.0-beta", diff --git a/system.config.js b/system.config.js index f6dd3dcd..d8aa9779 100644 --- a/system.config.js +++ b/system.config.js @@ -38,6 +38,7 @@ System.config({ "remarkable": "npm:remarkable@1.6.2", "rxjs": "npm:rxjs@5.0.0-beta.6", "scrollparent": "npm:scrollparent@0.1.0", + "slugify": "npm:slugify@0.1.1", "stream-http": "npm:stream-http@2.3.0", "systemjs/plugin-json": "github:systemjs/plugin-json@0.1.2", "zone.js": "npm:zone.js@0.6.12", diff --git a/typings/slugify.d.ts b/typings/slugify.d.ts new file mode 100644 index 00000000..01ef60ad --- /dev/null +++ b/typings/slugify.d.ts @@ -0,0 +1,4 @@ +declare module 'slugify' { + var x: any; + export default x; +}