creatium 0.1.2 → 0.1.4

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 +65 -11
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -12,12 +12,76 @@
12
12
  [![Medium](https://img.shields.io/badge/Medium-black?style=for-the-badge&logo=medium&logoColor=white)](https://medium.com/@pigeonposse)
13
13
 
14
14
 
15
+ [![License](https://img.shields.io/github/license/pigeonposse/creatium?color=green&style=for-the-badge&logoColor=white)](https://github.com/pigeonposse/creatium/blob/main/LICENSE)
16
+ [![Version](https://img.shields.io/npm/v/creatium?color=blue&style=for-the-badge&label=Version)](https://www.npmjs.com/package/creatium)
17
+
18
+ ## 🤔 What is it `creatium`?
19
+
20
+ `creatium` is a JavaScript Library for creating project templates.
21
+
22
+ > Useful for create-binaries like `pnpm create backan`
23
+
24
+ [Read more](https://www.npmjs.com/package/creatium)
25
+
26
+ Demo of the `creatium` library:
27
+
28
+ ![demo](https://github.com/pigeonposse/creatium/raw/main/docs/public/example.gif)
29
+
30
+ ## 📄 Description
31
+
15
32
  Build your create-bins quickly and easily
16
33
 
17
34
  ## Table of contents
18
35
 
36
+ - [🤔 What is it `creatium`?](#-what-is-it-creatium)
37
+ - [📄 Description](#-description)
38
+ - [🔑 Installation](#-installation)
39
+ - [🚀 Usage](#-usage)
40
+ - [Simple use case](#simple-use-case)
41
+ - [Project structure](#project-structure)
42
+ - [src/core.js](#srccorejs)
43
+ - [src/bin.js](#srcbinjs)
44
+ - [src/lib.js](#srclibjs)
45
+ - [package.json](#packagejson)
46
+ - [Data (templates)](#data-templates)
47
+ - [Execute](#execute)
48
+ - [Advanced use case](#advanced-use-case)
49
+ - [Project structure](#project-structure)
50
+ - [src/core.js](#srccorejs)
51
+ - [src/bin.js](#srcbinjs)
52
+ - [src/lib.js](#srclibjs)
53
+ - [package.json](#packagejson)
54
+ - [Data (templates & partials)](#data-templates--partials)
55
+ - [Execute](#execute)
56
+ - [Api documentation](#api-documentation)
57
+ - [Classes](#classes)
58
+ - [Creatium](#creatium)
59
+ - [CreatiumCore\<C\>](#creatiumcorec)
60
+ - [Type Aliases](#type-aliases)
61
+ - [CliOpts](#cliopts)
62
+ - [Config](#config)
63
+ - [CreateOpts](#createopts)
64
+ - [CreateTemplateOpts](#createtemplateopts)
65
+ - [Variables](#variables)
66
+ - [env](#env)
67
+ - [INSTALLER](#installer)
68
+ - [OPTION](#option)
69
+ - [prompt](#prompt)
70
+ - [style](#style)
71
+ - [sys](#sys)
72
+ - [TEXT\_EDITOR](#text_editor)
73
+ - [👨‍💻 Development](#-development)
74
+ - [☕ Donate](#-donate)
75
+ - [📜 License](#-license)
76
+ - [🐦 About us](#-about-us)
77
+
78
+
79
+
80
+ ## Table of contents
81
+
82
+ - [🤔 What is it `creatium`?](#-what-is-it-creatium)
83
+ - [📄 Description](#-description)
19
84
  - [🔑 Installation](#-installation)
20
- - [🤔 What is it Creatium?](#-what-is-it-creatium)
21
85
  - [🚀 Usage](#-usage)
22
86
  - [Simple use case](#simple-use-case)
23
87
  - [Project structure](#project-structure)
@@ -72,14 +136,6 @@ deno install creatium
72
136
  bun add creatium
73
137
  ```
74
138
 
75
- ## 🤔 What is it Creatium?
76
-
77
- Creatium is a CLI and Library for creating project templates.
78
-
79
- > Useful for create-binaries like `pnpm create backan`
80
-
81
- [Read more](https://www.npmjs.com/package/creatium)
82
-
83
139
  ## 🚀 Usage
84
140
 
85
141
  Create a cli and a library project with `creatium`
@@ -1524,8 +1580,6 @@ Text editor values used in `openEditor` option.
1524
1580
  | `WEBSTORM` | `"webstorm"` | 'webstorm' |
1525
1581
 
1526
1582
 
1527
- ***
1528
-
1529
1583
  ## 👨‍💻 Development
1530
1584
 
1531
1585
  __creatium__ is an open-source project and its development is open to anyone who wants to participate.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "creatium",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Build your create-bins quickly and easily",
5
5
  "bugs": {
6
6
  "url": "https://github.com/pigeonposse/creatium/issues",
@@ -47,7 +47,7 @@
47
47
  "@types/columnify": "1.5.4",
48
48
  "@types/update-notifier": "6.0.8",
49
49
  "@types/yargs": "17.0.33",
50
- "@creatium/repo-config": "0.1.2"
50
+ "@creatium/repo-config": "0.1.3"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public",