Skip to content

Commit 1dca526

Browse files
committed
DEV-1185_Crear-pipeline-ngx-jsonapi auto-commit
1 parent c8e1f1a commit 1dca526

File tree

6 files changed

+17
-15
lines changed

6 files changed

+17
-15
lines changed

.eslintrc.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
},
2121
"extends": [
2222
"plugin:@angular-eslint/recommended",
23-
"plugin:@typescript-eslint/recommended",
24-
"prettier"
23+
"prettier",
24+
"plugin:@typescript-eslint/recommended"
2525
],
2626
"plugins": [
2727
"eslint-plugin-no-null",
2828
"eslint-plugin-unicorn",
29-
"eslint-plugin-rxjs",
30-
"prettier"
29+
"prettier",
30+
"eslint-plugin-rxjs"
3131
],
3232
"rules": {
3333
"@angular-eslint/component-selector": [
@@ -198,9 +198,9 @@
198198
"rxjs/no-unsafe-switchmap": "error",
199199
"rxjs/no-unsafe-takeuntil": "error",
200200
"rxjs/throw-error": "error",
201-
"yoda": "error",
202201
"@typescript-eslint/no-explicit-any": "off",
203-
"indent": "off"
202+
"indent": "off",
203+
"yoda": "error"
204204
}
205205
},
206206
{

.github/workflows/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ jobs:
88
- uses: actions/checkout@v4
99
with:
1010
fetch-depth: 0
11-
- name: Use Node 20
11+
- name: Use Node 16
1212
uses: actions/setup-node@v4
1313
with:
14-
node-version: '20.x'
14+
node-version: '16.x'
1515
- name: Install dependencies
1616
run: yarn install
1717
- name: Prettier check
1818
run: yarn prettier:check
1919
- name: Lint
2020
run: yarn lint
21-
- name: Build
22-
run: yarn build
2321
- name: Test
24-
run: yarn test
22+
run: yarn test
23+
- name: Build
24+
run: yarn build:jsonapi

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.3.1] - 2025-08-01
8+
9+
- Changed CircleCI to GitHub Action and command fix
10+
711
## [Unreleased]
812

913
## [2.3.0-dev-test] - 2023-08-11

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,5 +184,5 @@
184184
"tsickle": "0.39.1",
185185
"tslib": "2.0.0"
186186
},
187-
"version": "2.3.1-dev-test"
187+
"version": "2.3.1"
188188
}

projects/ngx-jsonapi-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-jsonapi",
3-
"version": "2.3.6-dev-test",
3+
"version": "2.3.1",
44
"description": "JSON API library for Angular",
55
"module": "ngx-jsonapi/@ngx-jsonapi/ngx-jsonapi.es5.js",
66
"es2015": "ngx-jsonapi/@ngx-jsonapi/ngx-jsonapi.js",

tsconfig.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
]
2626
},
2727
"strict": false,
28-
"allowImportingTsExtensions": true,
29-
"noEmit": true,
3028
"useDefineForClassFields": false
3129
},
3230
"exclude": [

0 commit comments

Comments
 (0)