pug-tail 0.1.0-alpha.1 → 0.1.0-alpha.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.
Potentially problematic release.
This version of pug-tail might be problematic. Click here for more details.
- package/README.md +6 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -77,16 +77,20 @@ Card()
|
|
|
77
77
|
|
|
78
78
|
## 📦 Installation
|
|
79
79
|
|
|
80
|
+
**Alpha Release** - Currently in alpha testing:
|
|
81
|
+
|
|
80
82
|
```bash
|
|
81
|
-
npm install pug-tail
|
|
83
|
+
npm install pug-tail@alpha
|
|
82
84
|
```
|
|
83
85
|
|
|
84
86
|
or
|
|
85
87
|
|
|
86
88
|
```bash
|
|
87
|
-
yarn add pug-tail
|
|
89
|
+
yarn add pug-tail@alpha
|
|
88
90
|
```
|
|
89
91
|
|
|
92
|
+
> **Note**: This is an alpha release. Use `@alpha` tag to install the latest alpha version.
|
|
93
|
+
|
|
90
94
|
## 🚀 Quick Start
|
|
91
95
|
|
|
92
96
|
### Using the CLI
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pug-tail",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A transpiler that statically expands component DSL with slot syntax on Pug AST",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"bin": {
|
|
9
|
-
"pug-tail": "dist/cli.js"
|
|
9
|
+
"pug-tail": "./dist/cli.js"
|
|
10
10
|
},
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"license": "MIT",
|
|
61
61
|
"repository": {
|
|
62
62
|
"type": "git",
|
|
63
|
-
"url": "
|
|
63
|
+
"url": "https://github.com/megurock/pug-tail.git"
|
|
64
64
|
},
|
|
65
65
|
"bugs": {
|
|
66
66
|
"url": "https://github.com/megurock/pug-tail/issues"
|