Skip to content

Commit ddab7d1

Browse files
authored
Angular5 (#115)
* Upgrade to Angular 5
1 parent aab6a65 commit ddab7d1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+16724
-5130
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,18 @@ config.ts
1111
# Ignore output of typescript compilation. They WILL be included in the package since .npmignore is empty
1212
index.js.map
1313
index.d.ts
14+
index.ngsummary.json
1415

1516
/src/**/*.js
1617
/src/**/*.js.map
1718
/src/**/*.d.ts
19+
/src/**/*.ngsummary.json
1820

1921
# Ignore testing code TS compilation output
2022
/e2e/**/*.js
2123
/e2e/**/*.js.map
2224
/e2e/**/*.d.ts
25+
/e2e/**/*.ngsummary.json
2326

2427
/samples/**/*.js
2528
/samples/**/*.js.map

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Start experimenting right away with one these live examples:
3434
## Installation ######################################################################
3535
Install the SDK version that matches your Angular version
3636
```shell
37-
npm install @cloudinary/angular-4.x --save
37+
npm install @cloudinary/angular-5.x --save
3838
```
3939

4040
## Setup ######################################################################
@@ -66,7 +66,7 @@ Example Coudinary configuration in your application's module definition:
6666
```javascript
6767
import { NgModule } from '@angular/core';
6868
// ...
69-
import { CloudinaryModule, CloudinaryConfiguration } from '@cloudinary/angular-4.x';
69+
import { CloudinaryModule, CloudinaryConfiguration } from '@cloudinary/angular-5.x';
7070
import { Cloudinary } from 'cloudinary-core';
7171

7272
@NgModule({

karma.conf.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ module.exports = function (config) {
2828
}
2929
},
3030
files: [
31+
// Promise polyfill for Phantom
32+
'node_modules/promise-polyfill/promise.js',
33+
3134
// System.js Polyfills
3235
'node_modules/systemjs/dist/system-polyfills.src.js',
3336

0 commit comments

Comments
 (0)