Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 2 additions & 4 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,5 @@ jobs:
name: Deployment
runs-on: ubuntu-latest
steps:
- name: Trigger Vercel deployment
env:
DEPLOY_HOOK: ${{ secrets.VERCEL_PATH }}
run: curl -X POST "$DEPLOY_HOOK"
- name: Trigger Deployment
run: npm run deploy
7 changes: 2 additions & 5 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,8 @@ jobs:
- name: Install dependencies
run: npm install

- name: Run Prettier
run: npm run format:check

- name: Check docs
run: npm run check:docs

- name: Check ngverse
run: npm run check:ngverse
- name: Check kit
run: npm run check:kit
8 changes: 3 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run semantic-release

- name: Trigger Vercel deployment
if: success() # Run this step only if the previous steps succeeded
env:
DEPLOY_HOOK: ${{ secrets.VERCEL_PATH }}
run: curl -X POST "$DEPLOY_HOOK"
- name: Trigger Deployment
if: success()
run: npm run deploy
31 changes: 1 addition & 30 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,4 @@
# NgVerse

NgVerse is a collection of feature-rich Angular components, directives, and pipes. Unlike traditional libraries, it requires no installation—just copy and paste what you need into your project and fly 🚀.

For more info visit the [docs](https://www.ngverse.dev)

# Announcement

Thank you all for your feedback! The huge stable release is
coming—stay tuned!

[![npm](https://img.shields.io/npm/v/ngverse?label=npm&logo=npm)](https://www.npmjs.com/package/ngverse)

<p align="center">
<img src="logo.png" alt="Logo" width="200px" />
</p>

## Usage

### Installation

```bash
ng add ngverse
```

### Generate Elements

```bash
ng g ngverse:element button
```
# @ngverse/kit

## Creators

Expand Down
51 changes: 2 additions & 49 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@
"glob": "**/*",
"input": "projects/docs/public"
},
{
"glob": "**/*",
"input": "projects/ngverse/src/lib",
"output": "ngverse"
},
{
"glob": "**/*",
"input": "projects/docs/src/app/examples",
Expand Down Expand Up @@ -119,51 +114,9 @@
],
"eslintConfig": "projects/docs/eslint.config.js"
}
}
}
},
"ngverse": {
"projectType": "library",
"schematics": {
"@schematics/angular:component": {
"style": "css",
"changeDetection": "OnPush"
}
},
"root": "projects/ngverse",
"sourceRoot": "projects/ngverse/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/ngverse/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/ngverse/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/ngverse/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"tsConfig": "projects/ngverse/tsconfig.spec.json"
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/ngverse/**/*.ts",
"projects/ngverse/**/*.html"
],
"eslintConfig": "projects/ngverse/eslint.config.js"
}
"deploy": {
"builder": "angular-cli-ghpages:deploy"
}
}
},
Expand Down
Loading