Skip to content

Commit

Permalink
Merge pull request #1 from kevinkasper/main
Browse files Browse the repository at this point in the history
Added v18 of Angular
  • Loading branch information
FlorianRappl authored Jun 26, 2024
2 parents a420a77 + 2beed62 commit fb6a2fa
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')
PACKAGES=('v9' 'v10' 'v11' 'v12' 'v13' 'v14' 'v15' 'v16' 'v17' 'v18')

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')
PACKAGES=('v9' 'v10' 'v11' 'v12' 'v13' 'v14' 'v15' 'v16' 'v17' 'v18')

for PACKAGE in "${PACKAGES[@]}"
do
Expand Down
8 changes: 8 additions & 0 deletions packages/v18/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/v18/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "piral-ng-common",
"version": "18.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": "^18",
"@angular/compiler-cli": "^18",
"@angular/common": "^18",
"@angular/core": "^18",
"ng-packagr": "^18",
"piral-core": "^1.2.0",
"typescript": "~5.4.5"
},
"peerDependencies": {},
"dependencies": {}
}
1 change: 1 addition & 0 deletions packages/v18/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')
PACKAGES=('v9' 'v10' 'v11' 'v12' 'v13' 'v14' 'v15' 'v16' 'v17' 'v18')

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

0 comments on commit fb6a2fa

Please sign in to comment.