Skip to content

Commit

Permalink
Merge pull request #14 from Service-Soft/dev
Browse files Browse the repository at this point in the history
Release 7.0.0
  • Loading branch information
tim-fabian authored Jun 3, 2024
2 parents b19fbe6 + f1f4e9c commit 1312b89
Show file tree
Hide file tree
Showing 27 changed files with 6,883 additions and 5,127 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: github.event.pull_request.merged
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# The branch, tag or SHA to checkout. When checking out the repository that
# triggered a workflow, this defaults to the reference or SHA for that event.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# runs npm i inside the root directory
- name: npm i
run: |
Expand Down
3 changes: 2 additions & 1 deletion cspell.words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ datasource
datasources
Booter
Mustermann
Musterfrau
Musterfrau
mysqldump
7,566 changes: 3,955 additions & 3,611 deletions package-lock.json

Large diffs are not rendered by default.

37 changes: 18 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lbx-change-sets",
"version": "1.1.1",
"version": "7.0.0",
"description": "lbx-change-sets",
"keywords": [
"loopback-extension",
Expand All @@ -14,14 +14,15 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "14 || 16 || 18 || 19"
"node": "18 || 20"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"start": "cd showcase && npm run start",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"eslint": "eslint --report-unused-disable-directives . --max-warnings=0",
"eslint": "eslint . --max-warnings=0",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run rebuild",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
Expand All @@ -39,26 +40,24 @@
"!*/__tests__"
],
"peerDependencies": {
"@loopback/core": "5",
"@loopback/repository": "6",
"@loopback/rest": "13",
"@loopback/security": "0.10",
"@loopback/core": "6",
"@loopback/repository": "7",
"@loopback/rest": "14",
"@loopback/security": "0.11",
"lodash": "4"
},
"dependencies": {
"tslib": "^2.6.1"
"tslib": "^2.6.2"
},
"devDependencies": {
"@loopback/build": "^10.1.1",
"@loopback/core": "^5.1.1",
"@loopback/eslint-config": "^14.0.2",
"@loopback/rest": "^13.1.1",
"@loopback/testlab": "^6.1.1",
"@types/lodash": "^4.14.197",
"@types/node": "^20.5.0",
"eslint": "^8.47.0",
"eslint-config-service-soft": "^1.2.2",
"@loopback/build": "^11.0.2",
"@loopback/core": "^6.0.2",
"@loopback/rest": "^14.0.2",
"@loopback/testlab": "^7.0.2",
"@types/lodash": "^4.17.4",
"@types/node": "^20.14.0",
"eslint-config-service-soft": "^1.5.0",
"source-map-support": "^0.5.21",
"typescript": "~5.1.6"
"typescript": "~5.4.5"
}
}
}
Loading

0 comments on commit 1312b89

Please sign in to comment.