@chejende/clean-arch 1.0.0

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.
Files changed (2) hide show
  1. package/README.md +28 -0
  2. package/package.json +32 -0
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Getting Started With Schematics
2
+
3
+ This repository is a basic Schematic implementation that serves as a starting point to create and publish Schematics to NPM.
4
+
5
+ ### Testing
6
+
7
+ To test locally, install `@angular-devkit/schematics-cli` globally and use the `schematics` command line tool. That tool acts the same as the `generate` command of the Angular CLI, but also has a debug mode.
8
+
9
+ Check the documentation with
10
+
11
+ ```bash
12
+ schematics --help
13
+ ```
14
+
15
+ ### Unit Testing
16
+
17
+ `npm run test` will run the unit tests, using Jasmine as a runner and test framework.
18
+
19
+ ### Publishing
20
+
21
+ To publish, simply do:
22
+
23
+ ```bash
24
+ npm run build
25
+ npm publish
26
+ ```
27
+
28
+ That's it!
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@chejende/clean-arch",
3
+ "version": "1.0.0",
4
+ "description": "Angular Clean Architecture schematics",
5
+ "keywords": [
6
+ "angular",
7
+ "schematics",
8
+ "clean-architecture",
9
+ "hexagonal"
10
+ ],
11
+ "author": "Estarlin Lopez",
12
+ "license": "MIT",
13
+
14
+ "schematics": "./dist/collection.json",
15
+ "main": "./dist/index.js",
16
+ "files": ["dist"],
17
+
18
+ "scripts": {
19
+ "build": "tsc -p tsconfig.json",
20
+ "prepublishOnly": "npm run build"
21
+ },
22
+
23
+ "dependencies": {
24
+ "@angular-devkit/core": "^21.2.5",
25
+ "@angular-devkit/schematics": "^21.2.5"
26
+ },
27
+
28
+ "devDependencies": {
29
+ "@types/node": "^20.17.19",
30
+ "typescript": "~5.9.2"
31
+ }
32
+ }