Skip to content

Commit 6b53b20

Browse files
authored
chore: prepare docs and kit project
1 parent 143a4ea commit 6b53b20

579 files changed

Lines changed: 804 additions & 20018 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deployment.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,5 @@ jobs:
88
name: Deployment
99
runs-on: ubuntu-latest
1010
steps:
11-
- name: Trigger Vercel deployment
12-
env:
13-
DEPLOY_HOOK: ${{ secrets.VERCEL_PATH }}
14-
run: curl -X POST "$DEPLOY_HOOK"
11+
- name: Trigger Deployment
12+
run: npm run deploy

.github/workflows/pr-check.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,8 @@ jobs:
2323
- name: Install dependencies
2424
run: npm install
2525

26-
- name: Run Prettier
27-
run: npm run format:check
28-
2926
- name: Check docs
3027
run: npm run check:docs
3128

32-
- name: Check ngverse
33-
run: npm run check:ngverse
29+
- name: Check kit
30+
run: npm run check:kit

.github/workflows/release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ jobs:
2929
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
3030
run: npm run semantic-release
3131

32-
- name: Trigger Vercel deployment
33-
if: success() # Run this step only if the previous steps succeeded
34-
env:
35-
DEPLOY_HOOK: ${{ secrets.VERCEL_PATH }}
36-
run: curl -X POST "$DEPLOY_HOOK"
32+
- name: Trigger Deployment
33+
if: success()
34+
run: npm run deploy

README.md

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,4 @@
1-
# NgVerse
2-
3-
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 🚀.
4-
5-
For more info visit the [docs](https://www.ngverse.dev)
6-
7-
# Announcement
8-
9-
Thank you all for your feedback! The huge stable release is
10-
coming—stay tuned!
11-
12-
[![npm](https://img.shields.io/npm/v/ngverse?label=npm&logo=npm)](https://www.npmjs.com/package/ngverse)
13-
14-
<p align="center">
15-
<img src="logo.png" alt="Logo" width="200px" />
16-
</p>
17-
18-
## Usage
19-
20-
### Installation
21-
22-
```bash
23-
ng add ngverse
24-
```
25-
26-
### Generate Elements
27-
28-
```bash
29-
ng g ngverse:element button
30-
```
1+
# @ngverse/kit
312

323
## Creators
334

angular.json

Lines changed: 2 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,6 @@
3939
"glob": "**/*",
4040
"input": "projects/docs/public"
4141
},
42-
{
43-
"glob": "**/*",
44-
"input": "projects/ngverse/src/lib",
45-
"output": "ngverse"
46-
},
4742
{
4843
"glob": "**/*",
4944
"input": "projects/docs/src/app/examples",
@@ -119,51 +114,9 @@
119114
],
120115
"eslintConfig": "projects/docs/eslint.config.js"
121116
}
122-
}
123-
}
124-
},
125-
"ngverse": {
126-
"projectType": "library",
127-
"schematics": {
128-
"@schematics/angular:component": {
129-
"style": "css",
130-
"changeDetection": "OnPush"
131-
}
132-
},
133-
"root": "projects/ngverse",
134-
"sourceRoot": "projects/ngverse/src",
135-
"prefix": "app",
136-
"architect": {
137-
"build": {
138-
"builder": "@angular-devkit/build-angular:ng-packagr",
139-
"options": {
140-
"project": "projects/ngverse/ng-package.json"
141-
},
142-
"configurations": {
143-
"production": {
144-
"tsConfig": "projects/ngverse/tsconfig.lib.prod.json"
145-
},
146-
"development": {
147-
"tsConfig": "projects/ngverse/tsconfig.lib.json"
148-
}
149-
},
150-
"defaultConfiguration": "production"
151-
},
152-
"test": {
153-
"builder": "@angular-devkit/build-angular:karma",
154-
"options": {
155-
"tsConfig": "projects/ngverse/tsconfig.spec.json"
156-
}
157117
},
158-
"lint": {
159-
"builder": "@angular-eslint/builder:lint",
160-
"options": {
161-
"lintFilePatterns": [
162-
"projects/ngverse/**/*.ts",
163-
"projects/ngverse/**/*.html"
164-
],
165-
"eslintConfig": "projects/ngverse/eslint.config.js"
166-
}
118+
"deploy": {
119+
"builder": "angular-cli-ghpages:deploy"
167120
}
168121
}
169122
},

0 commit comments

Comments
 (0)