Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,18 @@ config.ts
# Ignore output of typescript compilation. They WILL be included in the package since .npmignore is empty
index.js.map
index.d.ts
index.ngsummary.json

/src/**/*.js
/src/**/*.js.map
/src/**/*.d.ts
/src/**/*.ngsummary.json

# Ignore testing code TS compilation output
/e2e/**/*.js
/e2e/**/*.js.map
/e2e/**/*.d.ts
/e2e/**/*.ngsummary.json

/samples/**/*.js
/samples/**/*.js.map
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Start experimenting right away with one these live examples:
## Installation ######################################################################
Install the SDK version that matches your Angular version
```shell
npm install @cloudinary/angular-4.x --save
npm install @cloudinary/angular-5.x --save
```

## Setup ######################################################################
Expand Down Expand Up @@ -66,7 +66,7 @@ Example Coudinary configuration in your application's module definition:
```javascript
import { NgModule } from '@angular/core';
// ...
import { CloudinaryModule, CloudinaryConfiguration } from '@cloudinary/angular-4.x';
import { CloudinaryModule, CloudinaryConfiguration } from '@cloudinary/angular-5.x';
import { Cloudinary } from 'cloudinary-core';

@NgModule({
Expand Down
3 changes: 3 additions & 0 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ module.exports = function (config) {
}
},
files: [
// Promise polyfill for Phantom
'node_modules/promise-polyfill/promise.js',

// System.js Polyfills
'node_modules/systemjs/dist/system-polyfills.src.js',

Expand Down
Loading