angular2-pipes
Advanced tools
Comparing version 0.4.12 to 0.4.13
{ | ||
"project": { | ||
"version": "1.0.0-beta.20-4", | ||
"version": "1.0.0", | ||
"name": "ng2-pipes" | ||
@@ -10,6 +10,3 @@ }, | ||
"outDir": "dist", | ||
"assets": [ | ||
"assets", | ||
"favicon.ico" | ||
], | ||
"assets": [], | ||
"index": "index.html", | ||
@@ -21,5 +18,3 @@ "main": "main.ts", | ||
"mobile": false, | ||
"styles": [ | ||
"styles.css" | ||
], | ||
"styles": [], | ||
"scripts": [], | ||
@@ -54,9 +49,9 @@ "environments": { | ||
"class": false, | ||
"component": true, | ||
"directive": true, | ||
"module": false, | ||
"component": false, | ||
"directive": false, | ||
"module": true, | ||
"pipe": true, | ||
"service": true | ||
"service": false | ||
} | ||
} | ||
} |
export * from './pipes.module'; | ||
export * from './demo/app.component'; | ||
export * from './demo/app.module'; |
@@ -6,5 +6,3 @@ "use strict"; | ||
__export(require('./pipes.module')); | ||
__export(require('./demo/app.component')); | ||
__export(require('./demo/app.module')); | ||
//# sourceMappingURL=index.js.map |
"use strict"; | ||
require('./polyfills.ts'); | ||
var platform_browser_dynamic_1 = require('@angular/platform-browser-dynamic'); | ||
var core_1 = require('@angular/core'); | ||
var environment_1 = require('./environments/environment'); | ||
var _1 = require('./app/'); | ||
if (environment_1.environment.production) { | ||
core_1.enableProdMode(); | ||
} | ||
platform_browser_dynamic_1.platformBrowserDynamic().bootstrapModule(_1.AppModule); | ||
//# sourceMappingURL=main.js.map |
{ | ||
"name": "angular2-pipes", | ||
"version": "0.4.12", | ||
"version": "0.4.13", | ||
"author": "Dan Revah", | ||
@@ -5,0 +5,0 @@ "description": "Useful angular2 pipes", |
export * from './pipes.module'; | ||
export * from './demo/app.component'; | ||
export * from './demo/app.module'; |
import './polyfills.ts'; | ||
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; | ||
import { enableProdMode } from '@angular/core'; | ||
import { environment } from './environments/environment'; | ||
import { AppModule } from './app/'; | ||
if (environment.production) { | ||
enableProdMode(); | ||
} | ||
platformBrowserDynamic().bootstrapModule(AppModule); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
231634
330
3840