angular2-redux
Advanced tools
Comparing version 3.1.1 to 3.1.2
@@ -36,3 +36,2 @@ System.config({ | ||
"@angular/testing": "npm:@angular/testing@0.0.0-0", | ||
"bootstrap": "github:twbs/bootstrap@3.3.6", | ||
"crypto": "github:jspm/nodelibs-crypto@0.1.0", | ||
@@ -82,5 +81,2 @@ "css": "github:systemjs/plugin-css@0.1.21", | ||
}, | ||
"github:twbs/bootstrap@3.3.6": { | ||
"jquery": "npm:jquery@2.2.3" | ||
}, | ||
"npm:@angular/common@0.0.0-0": { | ||
@@ -87,0 +83,0 @@ "@angular/core": "npm:@angular/core@0.0.0-0", |
@@ -1,2 +0,2 @@ | ||
import { Observable } from "rxjs/Observable"; | ||
import { Observable } from "rxjs"; | ||
import "rxjs/add/operator/map"; | ||
@@ -3,0 +3,0 @@ import "rxjs/add/operator/distinctUntilChanged"; |
"use strict"; | ||
var Observable_1 = require("rxjs/Observable"); | ||
var rxjs_1 = require("rxjs"); | ||
// ensure required operators are enabled | ||
@@ -12,3 +12,3 @@ require("rxjs/add/operator/map"); | ||
function AppStore(store) { | ||
this.store$ = Observable_1.Observable.from(store); | ||
this.store$ = rxjs_1.Observable.from(store); | ||
this.getState = function () { | ||
@@ -15,0 +15,0 @@ return store.getState(); |
@@ -17,9 +17,5 @@ var gulp = require('gulp'); | ||
gulp.task('copySources', function(){ | ||
return gulp.src(paths.sourceFiles).pipe(gulp.dest(paths.dist)); | ||
}); | ||
gulp.task('tsc', function () { | ||
var tsProject = tsc.createProject('tsconfig.json', {outDir:"dist",declaration:true}); | ||
var tsResult = gulp.src(paths.sourceFiles).pipe(tsc(tsProject)); | ||
var tsResult = tsProject.src().pipe(tsc(tsProject)); | ||
tsResult.pipe(gulp.dest(paths.dist)); | ||
@@ -29,6 +25,5 @@ return tsResult.dts.pipe(gulp.dest(paths.dist)); | ||
gulp.task('copy', function(){ | ||
return gulp.src(paths.distSourcesFiles).pipe(gulp.dest(paths.dist)); | ||
gulp.task('copyToDist', function(){ | ||
return gulp.src("dist/src/*").pipe(gulp.dest(paths.dist)); | ||
}); | ||
gulp.task('cleanup', function () { | ||
@@ -42,5 +37,4 @@ return gulp.src(paths.toDelete, {read: false}).pipe(rimraf({force: true})); | ||
'clean', | ||
//'copySources', | ||
'tsc', | ||
//'copy', | ||
'copyToDist', | ||
'cleanup', | ||
@@ -47,0 +41,0 @@ function (error) { |
{ | ||
"name": "angular2-redux", | ||
"version": "3.1.1", | ||
"version": "3.1.2", | ||
"description": "Wrapper components for using Redux in an Angular2 application", | ||
@@ -9,2 +9,3 @@ "main": "dist/index.js", | ||
"lint": "tslint src/**/*.ts -s node_modules/tslint-stylish -t stylish", | ||
"typings": "typings install", | ||
"commit": "git-cz", | ||
@@ -39,11 +40,11 @@ "clean": "rimraf dist", | ||
"redux-thunk": "^2.0.1", | ||
"rxjs": "^5.0.0-beta.6" | ||
"rxjs": "^5.0.0-beta.12" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@angular/common": "^2.0.0-rc.1", | ||
"@angular/compiler": "^2.0.0-rc.1", | ||
"@angular/core": "^2.0.0-rc.1", | ||
"@angular/platform-browser": "^2.0.0-rc.1", | ||
"@angular/platform-browser-dynamic": "^2.0.0-rc.1", | ||
"@angular/common": "^2.0.0", | ||
"@angular/compiler": "^2.0.0", | ||
"@angular/core": "^2.0.0", | ||
"@angular/platform-browser": "^2.0.0", | ||
"@angular/platform-browser-dynamic": "^2.0.0", | ||
"commitizen": "^2.4.6", | ||
@@ -73,3 +74,3 @@ "cz-conventional-changelog": "^1.1.5", | ||
"run-sequence": "^1.1.5", | ||
"rxjs": "5.0.0-beta.6", | ||
"rxjs": "5.0.0-beta.12", | ||
"semantic-release": "^4.3.5", | ||
@@ -80,3 +81,4 @@ "tsc": "^1.20150623.0", | ||
"typescript": "^1.8", | ||
"zone.js": "^0.6.12" | ||
"typings": "^1.3.3", | ||
"zone.js": "^0.6.21" | ||
}, | ||
@@ -96,3 +98,3 @@ "config": { | ||
"redux-thunk": "npm:redux-thunk@^2.0.1", | ||
"rxjs": "npm:rxjs@5.0.0-beta.6" | ||
"rxjs": "npm:rxjs@5.0.0-beta.12" | ||
}, | ||
@@ -105,3 +107,2 @@ "devDependencies": { | ||
"@angular/platform-browser-dynamic": "npm:@angular/platform-browser-dynamic@^2.0.0-rc.1", | ||
"bootstrap": "github:twbs/bootstrap@^3.3.6", | ||
"crypto": "github:jspm/nodelibs-crypto@^0.1.0", | ||
@@ -111,5 +112,5 @@ "css": "github:systemjs/plugin-css@^0.1.20", | ||
"typescript": "npm:typescript@^1.8", | ||
"zone.js": "npm:zone.js@^0.6.10" | ||
"zone.js": "npm:zone.js@^0.6.21" | ||
} | ||
} | ||
} |
@@ -1,2 +0,2 @@ | ||
import {Observable} from "rxjs/Observable"; | ||
import {Observable} from "rxjs"; | ||
@@ -3,0 +3,0 @@ // ensure required operators are enabled |
@@ -13,9 +13,10 @@ { | ||
}, | ||
"exclude": [ | ||
"jspm_packages", | ||
"node_modules", | ||
"dist", | ||
"typings/main.d.ts", | ||
"typings/main" | ||
"files": [ | ||
"src/index.ts", | ||
"src/app-store.ts", | ||
"src/app-store-factory.ts", | ||
"src/actions.ts", | ||
"typings/index.d.ts", | ||
"node_modules/typescript/lib/lib.es6.d.ts" | ||
] | ||
} |
{ | ||
"ambientDependencies": { | ||
"redux": "github:andrew-w-ross/typings-redux#bccd372fe4de8c4d4782e1c347f8ed62d9b0cae8", | ||
"redux-thunk": "github:DefinitelyTyped/DefinitelyTyped/redux-thunk/redux-thunk.d.ts#75249b97104d00c1ca2451ac29369009a5f2b101" | ||
} | ||
"globalDependencies": { | ||
"redux": "registry:dt/redux", | ||
"redux-thunk": "registry:dt/redux-thunk" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
78976
39
1727
37