Skip to content
This repository has been archived by the owner on May 10, 2021. It is now read-only.

Commit

Permalink
Merge pull request #17 from hapinessjs/next
Browse files Browse the repository at this point in the history
release(version): v5.4.0
  • Loading branch information
akanass authored Mar 20, 2018
2 parents 0b57772 + df80d0d commit 066eb9c
Show file tree
Hide file tree
Showing 5 changed files with 207 additions and 197 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ This is a [Hapiness](https://github.com/hapinessjs/hapiness) Engine for running

This story will show you how to set up Universal bundling for an existing `@angular/cli`.

We support actually `@angular` `@5.2.6` and next so you must upgrade all packages inside your project.
We support actually `@angular` `@5.2.9` and next so you must upgrade all packages inside your project.

We use `yarn` as package manager.

Expand Down Expand Up @@ -550,6 +550,10 @@ To set up your development environment:
[Back to top](#table-of-contents)

## Change History
* v5.4.0 (2018-03-20)
* `Angular v5.2.9+`
* Fix `@nguniversal/module-map-ngfactory-loader` dependencies with new bundle
* Documentation
* v5.3.0 (2018-02-26)
* `Angular v5.2.6+`
* Handle `302` redirect
Expand Down
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hapiness/ng-universal",
"version": "5.3.0",
"version": "5.4.0",
"description": "This is a Hapiness Engine for running Angular Apps on the server for server side rendering.",
"main": "index.js",
"types": "index.d.ts",
Expand Down Expand Up @@ -75,44 +75,44 @@
},
"homepage": "https://github.com/hapinessjs/ng-universal-module#readme",
"dependencies": {
"@types/node": "^9.4.5"
"@types/node": "^9.4.7"
},
"devDependencies": {
"@angular/animations": "^5.2.6",
"@angular/common": "^5.2.6",
"@angular/compiler": "^5.2.6",
"@angular/compiler-cli": "^5.2.6",
"@angular/core": "^5.2.6",
"@angular/http": "^5.2.6",
"@angular/platform-browser": "^5.2.6",
"@angular/platform-browser-dynamic": "^5.2.6",
"@angular/platform-server": "^5.2.6",
"@hapiness/core": "^1.3.0",
"@nguniversal/module-map-ngfactory-loader": "^5.0.0-beta.5",
"@angular/animations": "^5.2.9",
"@angular/common": "^5.2.9",
"@angular/compiler": "^5.2.9",
"@angular/compiler-cli": "^5.2.9",
"@angular/core": "^5.2.9",
"@angular/http": "^5.2.9",
"@angular/platform-browser": "^5.2.9",
"@angular/platform-browser-dynamic": "^5.2.9",
"@angular/platform-server": "^5.2.9",
"@hapiness/core": "^1.3.2",
"@nguniversal/module-map-ngfactory-loader": "^5.0.0-beta.6",
"@types/fs-extra": "^5.0.0",
"coveralls": "^3.0.0",
"fs-extra": "^5.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.0.0",
"mocha-typescript": "^1.1.12",
"rimraf": "^2.6.2",
"rxjs": "^5.5.6",
"rxjs": "^5.5.7",
"ts-node": "^3.3.0",
"tslint": "^5.9.1",
"typescript": "~2.6.2",
"unit.js": "^2.0.0",
"zone.js": "^0.8.20"
},
"peerDependencies": {
"@angular/compiler": "^5.2.6",
"@angular/compiler-cli": "^5.2.6",
"@angular/core": "^5.2.6",
"@angular/http": "^5.2.6",
"@angular/platform-server": "^5.2.6",
"@hapiness/core": "^1.3.0",
"@hapiness/ng-universal-transfer-http": "^6.0.0",
"@nguniversal/module-map-ngfactory-loader": "^5.0.0-beta.5",
"rxjs": "^5.5.6",
"@angular/compiler": "^5.2.9",
"@angular/compiler-cli": "^5.2.9",
"@angular/core": "^5.2.9",
"@angular/http": "^5.2.9",
"@angular/platform-server": "^5.2.9",
"@hapiness/core": "^1.3.2",
"@hapiness/ng-universal-transfer-http": "^7.0.0",
"@nguniversal/module-map-ngfactory-loader": "^5.0.0-beta.6",
"rxjs": "^5.5.7",
"ts-loader": "^3.3.1"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/module/interfaces/options.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { NgModuleFactory, StaticProvider, Type } from '@angular/core';
import { ModuleMap } from '@nguniversal/module-map-ngfactory-loader';
import { ɵa as ModuleMap } from '@nguniversal/module-map-ngfactory-loader';

/**
* These are the allowed options for the module
Expand Down
2 changes: 1 addition & 1 deletion src/module/services/engine/ng.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { HttpServerService, Inject, Injectable, Request, HTTPHandlerResponse, Re
import { Compiler, CompilerFactory, NgModuleFactory, StaticProvider, Type } from '@angular/core';
import { INITIAL_CONFIG, platformDynamicServer, renderModuleFactory } from '@angular/platform-server';
import { ResourceLoader } from '@angular/compiler';
import { ModuleMap, provideModuleMap } from '@nguniversal/module-map-ngfactory-loader';
import { ɵa as ModuleMap, provideModuleMap } from '@nguniversal/module-map-ngfactory-loader';

import { Observable } from 'rxjs/Observable';
import { toArray, filter, flatMap, map, tap } from 'rxjs/operators';
Expand Down
Loading

0 comments on commit 066eb9c

Please sign in to comment.