Skip to content

Commit

Permalink
Merge pull request #69 from by-pinja/feature/MUS-14816-update-resourc…
Browse files Browse the repository at this point in the history
…e-calendar-to-v19

Feature/mus 14816 update resource calendar to v19
  • Loading branch information
ashiqbaig authored Jan 7, 2025
2 parents c75f41a + 4d95c5f commit fcdfe4e
Show file tree
Hide file tree
Showing 10 changed files with 8,108 additions and 19,414 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

### [4.0.0](https://github.com/by-pinja/ngx-resource-calendar/compare/3.0.0...4.0.0) (2025-01-07)

### CHANGES

- Angular 19 or higher is now required to use this package

### [3.0.0](https://github.com/by-pinja/ngx-resource-calendar/compare/2.0.0...3.0.0) (2024-08-22)

### CHANGES
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ library '[email protected]'

podTemplate(label: pod.label,
containers: pod.templates + [
containerTemplate(name: 'node', image: 'node:20', ttyEnabled: true, command: '/bin/sh -c', args: 'cat'),
containerTemplate(name: 'node', image: 'node:22', ttyEnabled: true, command: '/bin/sh -c', args: 'cat'),
]
) {
node(pod.label) {
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## What is this?

Resource calendar for Angular 18+
Resource calendar for Angular 19+

## Install

Expand Down
18 changes: 9 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,15 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser-esbuild",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/demo",
"outputPath": {
"base": "dist/demo"
},
"index": "projects/demo/src/index.html",
"main": "projects/demo/src/main.ts",
"polyfills": "projects/demo/src/polyfills.ts",
"polyfills": [
"projects/demo/src/polyfills.ts"
],
"tsConfig": "projects/demo/tsconfig.app.json",
"assets": [
"projects/demo/src/favicon.ico",
Expand All @@ -63,12 +66,11 @@
"projects/demo/src/styles.css"
],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
"namedChunks": true,
"browser": "projects/demo/src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -83,8 +85,6 @@
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
Expand Down
Loading

0 comments on commit fcdfe4e

Please sign in to comment.