Skip to content

Commit 32797c1

Browse files
authored
Merge pull request #39 from rars/angular-update
2 parents 035bc5a + e67daad commit 32797c1

File tree

11 files changed

+10823
-10322
lines changed

11 files changed

+10823
-10322
lines changed

.github/workflows/node.js.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Node.js CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
matrix:
16+
node-version: [16.x, 18.x]
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
- run: npm ci
25+
- run: npm run build --if-present
26+
- run: npm test

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [2.0.0](https://github.com/rars/ngx-diff/compare/v1.0.0...v2.0.0) (2023-05-06)
6+
7+
8+
### Features
9+
10+
* **ngx-diff:** update to Angular 14 ([e95fbaa](https://github.com/rars/ngx-diff/commit/e95fbaaf5b52ad40a3e519ec0d8f5a11ac5a60c8))
11+
512
## [1.0.0](https://github.com/rars/ngx-diff/compare/v0.4.0...v1.0.0) (2022-03-21)
613

714
### Features

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://travis-ci.org/rars/ngx-diff.svg?branch=master)](https://travis-ci.org/rars/ngx-diff)
44

5-
Angular 2+ component library for displaying diffs of text. [Demo](https://rars.github.io/ngx-diff/).
5+
Angular component library for displaying diffs of text. [Demo](https://rars.github.io/ngx-diff/).
66

77
## Quickstart
88

@@ -45,6 +45,7 @@ Angular 2+ component library for displaying diffs of text. [Demo](https://rars.g
4545
| 10 | 0.3.0 |
4646
| 11 | 0.4.0 |
4747
| 13 | 1.0.0 |
48+
| 14 | 2.0.0 |
4849

4950
## Contributions welcome!
5051

angular.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@
154154
}
155155
}
156156
},
157-
"defaultProject": "ngx-diff-demo",
158157
"cli": {
159158
"analytics": "3c2711c5-4843-4cca-a328-5806ff26cc55"
160159
}

karma.conf.js

Lines changed: 0 additions & 33 deletions
This file was deleted.

0 commit comments

Comments
 (0)