create-elytra 0.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.
- package/README.md +7 -0
- package/index.js +7 -0
- package/package.json +20 -0
package/README.md
ADDED
package/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
console.error("Elytra CMS is not released yet.");
|
|
4
|
+
console.error("This package reserves the future `npm create elytra` initializer.");
|
|
5
|
+
console.error("Follow the project for release updates before using this command.");
|
|
6
|
+
|
|
7
|
+
process.exitCode = 1;
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-elytra",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Project initializer for Elytra CMS.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"create-elytra": "./index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"index.js",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=20"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"start": "node ./index.js"
|
|
19
|
+
}
|
|
20
|
+
}
|