Skip to content

Commit

Permalink
Merge pull request #114 from anikets43/master
Browse files Browse the repository at this point in the history
Upgrade to Angular 16
  • Loading branch information
alberthaff authored Aug 21, 2023
2 parents a5ebc99 + b2d3364 commit 5d2b7e6
Show file tree
Hide file tree
Showing 5 changed files with 6,640 additions and 4,965 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
8.0.0
- Add support for Angular 16 ([#114](https://github.com/alberthaff/ngx-papaparse/pull/114))

7.0.0
- Add support for Angular 15 ([#109](https://github.com/alberthaff/ngx-papaparse/pull/109))

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ This is a [Papa Parse](https://github.com/mholt/PapaParse) wrapper library for A
## Installation
You can install the library with [npm](https://npmjs.com).

### Angular 15+
### Angular 16+

npm install ngx-papaparse@7 --save
npm install ngx-papaparse@8 --save

[Documentation](https://alberthaff.dk/projects/ngx-papaparse/docs/v7)

Expand Down
10 changes: 5 additions & 5 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
# Introduction

This library is a Papa Parse wrapper for Angular.
This version is only compatible with Angular 14+.
This version is only compatible with Angular 16+.
For older versions of Angular, please use an older version of ngx-papaparse.

# Installation
In order to install the library, run following command in your project directory:

```bash
$ npm install ngx-papaparse@6 --save
$ npm install ngx-papaparse@8 --save
```

Once installed, Papa Parse is automatically imported to your project.

## Angular 10 or later
If you are using Angular 10 or later, you will be met with following warning:
## CommonJS warning
Since this library depends on a CommonJS library, you will be met with following warning:

```text
WARNING in node_modules/ngx-papaparse/fesm2015/ngx-papaparse.js depends on 'papaparse/papaparse.min.js'. CommonJS or AMD dependencies can cause optimization bailouts.
```

To disable this warning, add following to your build options in `angular.json`-file:
To disable the warning, add following to your build options in `angular.json`-file:
```json
"build": {
"builder": "@angular-devkit/build-angular:browser",
Expand Down
Loading

0 comments on commit 5d2b7e6

Please sign in to comment.