Skip to content

Commit

Permalink
Merge pull request #2 from kevinkasper/main
Browse files Browse the repository at this point in the history
Added v19 of Angular
  • Loading branch information
FlorianRappl authored Dec 22, 2024
2 parents fb6a2fa + 973d9de commit af618c0
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build-all.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

PACKAGES=('v9' 'v10' 'v11' 'v12' 'v13' 'v14' 'v15' 'v16' 'v17' 'v18')
PACKAGES=('v9' 'v10' 'v11' 'v12' 'v13' 'v14' 'v15' 'v16' 'v17' 'v18' 'v19')

for PACKAGE in "${PACKAGES[@]}"
do
Expand Down
2 changes: 1 addition & 1 deletion install-all.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

PACKAGES=('v9' 'v10' 'v11' 'v12' 'v13' 'v14' 'v15' 'v16' 'v17' 'v18')
PACKAGES=('v9' 'v10' 'v11' 'v12' 'v13' 'v14' 'v15' 'v16' 'v17' 'v18' 'v19')

for PACKAGE in "${PACKAGES[@]}"
do
Expand Down
8 changes: 8 additions & 0 deletions packages/v19/ng-package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "https://raw.githubusercontent.com/ng-packagr/ng-packagr/main/src/ng-package.schema.json",
"dest": "dist",
"assets": [],
"lib": {
"entryFile": "./src/public_api.ts"
}
}
32 changes: 32 additions & 0 deletions packages/v19/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "piral-ng-common",
"version": "19.0.0",
"description": "Common module for piral-ng.",
"keywords": [],
"author": "smapiot",
"main": "piral-ng-common.js",
"homepage": "https://piral.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/smapiot/piral.git"
},
"bugs": {
"url": "https://github.com/smapiot/piral/issues"
},
"scripts": {
"build": "ng-packagr -p ng-package.json",
"copy": "cp src/index.d.ts dist/ && cp src/piral-ng-common.js dist/"
},
"devDependencies": {
"@angular/compiler": "^19",
"@angular/compiler-cli": "^19",
"@angular/common": "^19",
"@angular/core": "^19",
"ng-packagr": "^19",
"piral-core": "^1.2.0",
"typescript": "~5.6.2"
},
"peerDependencies": {},
"dependencies": {}
}
1 change: 1 addition & 0 deletions packages/v19/src
2 changes: 1 addition & 1 deletion publish-all.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

PACKAGES=('v9' 'v10' 'v11' 'v12' 'v13' 'v14' 'v15' 'v16' 'v17' 'v18')
PACKAGES=('v9' 'v10' 'v11' 'v12' 'v13' 'v14' 'v15' 'v16' 'v17' 'v18' 'v19')

for PACKAGE in "${PACKAGES[@]}"
do
Expand Down

0 comments on commit af618c0

Please sign in to comment.