@libria/scaffold-plugin-ts-lib 0.0.5 → 0.0.7

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.
@@ -1 +1 @@
1
- 649c06b95c15c3912868ee7dd7116c3bc383a86888472b9d8edb66d4ea4c5874
1
+ d674dc272be5d1f16266de4577c6d3068ffa7b992b953fb0549adb7248cec376
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @libria/scaffold-ts-lib
1
+ # @libria/scaffold-plugin-ts-lib
2
2
 
3
3
  TypeScript library template for [@libria/scaffold](https://github.com/LibriaForge/scaffold).
4
4
 
@@ -7,17 +7,17 @@ This plugin scaffolds new TypeScript library projects with a pre-configured buil
7
7
  ## Installation
8
8
 
9
9
  ```bash
10
- npm install @libria/scaffold-ts-lib
10
+ npm install @libria/scaffold-plugin-ts-lib
11
11
  ```
12
12
 
13
13
  ## Usage
14
14
 
15
15
  ```bash
16
16
  # Interactive — prompts for all options
17
- scaffold new ts-lib my-lib
17
+ lb-scaffold new ts-lib my-lib
18
18
 
19
19
  # Non-interactive
20
- scaffold new ts-lib my-lib --author "John Doe" --license MIT
20
+ lb-scaffold new ts-lib my-lib --author "John Doe" --license MIT
21
21
  ```
22
22
 
23
23
  ## What You Get
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libria/scaffold-plugin-ts-lib",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "Typescript library template for @libria/scaffold",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",
@@ -32,7 +32,7 @@
32
32
  "homepage": "https://github.com/LibriaForge/scaffold-starters#readme",
33
33
  "dependencies": {
34
34
  "@libria/plugin-loader": "^2.1.0",
35
- "@libria/scaffold-core": "^0.3.5",
35
+ "@libria/scaffold-core": "^0.3.7",
36
36
  "fs-extra": "^11.3.3"
37
37
  }
38
38
  }
@@ -0,0 +1,14 @@
1
+ {
2
+ "tmpDir": ".tmp-clean-publish",
3
+ "copy": [
4
+ "dist/**",
5
+ "README.md",
6
+ "LICENSE"
7
+ ],
8
+ "packageJson": {
9
+ "remove": {
10
+ "scripts": true,
11
+ "devDependencies": true
12
+ }
13
+ }
14
+ }