Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
heinerwalter committed Oct 18, 2024
2 parents d25930e + 1ddfade commit 4f00292
Show file tree
Hide file tree
Showing 49 changed files with 6,093 additions and 6,648 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -22,7 +22,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm i
- name: Build Library
run: npm run build
- name: Test Library
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node.js 16.x
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '20.x'
cache: 'npm'
- run: npm ci
- run: npm i
- name: Change base URL for GitHub Pages
run: node projects/demo/scripts/changeBaseUrl.js "/ngx-property-editor/"
- name: Build Library
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

/.nx

# Compiled output
/dist
/tmp
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

[![build](https://github.com/heinerwalter/ngx-property-editor/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/heinerwalter/ngx-property-editor/actions/workflows/build-and-test.yml)
[![npm version](https://img.shields.io/npm/v/ngx-property-editor?logo=npm&logoColor=fff)](https://www.npmjs.com/package/ngx-property-editor)
[![angular version](https://badgen.net/static/Angular/v17/c3002f?icon=angular)](https://v17.angular.io/docs)

This is an Angular library containing simple input components for different data types
(styled with bootstrap). Based on the input components this library provides a property
Expand Down
6 changes: 3 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,18 +114,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "demo:build:production"
"buildTarget": "demo:build:production"
},
"development": {
"browserTarget": "demo:build:development"
"buildTarget": "demo:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "demo:build"
"buildTarget": "demo:build"
}
},
"test": {
Expand Down
Loading

0 comments on commit 4f00292

Please sign in to comment.