create-zuplo-api 6.54.0 → 6.54.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.
|
@@ -15,7 +15,7 @@ This page demonstrates various markdown features and formatting options availabl
|
|
|
15
15
|
|
|
16
16
|
## Text Formatting
|
|
17
17
|
|
|
18
|
-
You can make text **bold** or
|
|
18
|
+
You can make text **bold** or _italic_ to emphasize important points. For technical terms, use `inline code` formatting.
|
|
19
19
|
|
|
20
20
|
### Code Examples
|
|
21
21
|
|
|
@@ -27,7 +27,7 @@ function greet(name) {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
// Example usage
|
|
30
|
-
console.log(greet(
|
|
30
|
+
console.log(greet("World"));
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
And here's a Python example:
|
|
@@ -63,17 +63,17 @@ for i in range(10):
|
|
|
63
63
|
|
|
64
64
|
## Tables
|
|
65
65
|
|
|
66
|
-
| Feature
|
|
67
|
-
|
|
68
|
-
| Markdown
|
|
69
|
-
| Code Blocks | Syntax highlighting
|
|
70
|
-
| Tables
|
|
71
|
-
| Images
|
|
66
|
+
| Feature | Description | Status |
|
|
67
|
+
| ----------- | --------------------- | ------ |
|
|
68
|
+
| Markdown | Basic text formatting | ✅ |
|
|
69
|
+
| Code Blocks | Syntax highlighting | ✅ |
|
|
70
|
+
| Tables | Data organization | ✅ |
|
|
71
|
+
| Images | Visual content | ✅ |
|
|
72
72
|
|
|
73
73
|
## Blockquotes
|
|
74
74
|
|
|
75
75
|
> "The best way to predict the future is to implement it."
|
|
76
|
-
>
|
|
76
|
+
>
|
|
77
77
|
> — Alan Kay
|
|
78
78
|
|
|
79
79
|
## Links and References
|
|
@@ -100,4 +100,4 @@ This example demonstrates the power and flexibility of markdown for creating bea
|
|
|
100
100
|
|
|
101
101
|
---
|
|
102
102
|
|
|
103
|
-
|
|
103
|
+
_Last updated: March 2024_
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-zuplo-api",
|
|
3
|
-
"version": "6.54.
|
|
3
|
+
"version": "6.54.2",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"api",
|
|
6
6
|
"openapi",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"LICENSE.md"
|
|
25
25
|
],
|
|
26
26
|
"scripts": {
|
|
27
|
-
"dev": "ncc build ./index.ts -w -o dist/",
|
|
27
|
+
"dev": "ncc build ./index.ts --source-map -w -o dist/",
|
|
28
28
|
"build": "rimraf ./dist && ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
|
|
29
29
|
"build:public": "rimraf ./dist && ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register"
|
|
30
30
|
},
|