@x-skills-for-ai/angular 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +14 -5
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @x-skills-for-ai/angular
|
|
2
2
|
|
|
3
|
-
Angular directive for [
|
|
3
|
+
Angular directive for [@x-skills-for-ai/core](..).
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```
|
|
8
|
-
npm install
|
|
8
|
+
npm install @x-skills-for-ai/angular
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
@@ -13,7 +13,7 @@ npm install xskills-angular xskills-core @angular/core @angular/common @angular/
|
|
|
13
13
|
```ts
|
|
14
14
|
import { Component } from '@angular/core';
|
|
15
15
|
import { XSkillDefinition } from 'xskills-core';
|
|
16
|
-
import { XSkillDirective } from '
|
|
16
|
+
import { XSkillDirective } from '@x-skills-for-ai/angular';
|
|
17
17
|
|
|
18
18
|
@Component({
|
|
19
19
|
selector: 'app-counter',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@x-skills-for-ai/angular",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Angular service for xskills-core integration",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@angular/core": "^17.0.0"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@x-skills-for-ai/core": "^
|
|
14
|
+
"@x-skills-for-ai/core": "^2.0.6"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@angular/core": "^17.0.0",
|
|
@@ -21,7 +21,10 @@
|
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "rimraf dist && tsc",
|
|
23
23
|
"dev": "tsc --watch",
|
|
24
|
-
"prepublishOnly": "npm run build"
|
|
24
|
+
"prepublishOnly": "npm run build",
|
|
25
|
+
"patch": "npm version patch && npm publish --access public",
|
|
26
|
+
"minor": "npm version minor && npm publish --access public",
|
|
27
|
+
"major": "npm version major && npm publish --access public"
|
|
25
28
|
},
|
|
26
29
|
"keywords": [
|
|
27
30
|
"xskills",
|
|
@@ -29,5 +32,11 @@
|
|
|
29
32
|
"skills"
|
|
30
33
|
],
|
|
31
34
|
"author": "",
|
|
32
|
-
"license": "MIT"
|
|
33
|
-
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "https://github.com/venkateshwarreddyr/xskills.git",
|
|
39
|
+
"directory": "packages/angular"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/venkateshwarreddyr/xskills/tree/main/packages/angular"
|
|
42
|
+
}
|