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.
Files changed (3) hide show
  1. package/README.md +7 -0
  2. package/index.js +7 -0
  3. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # create-elytra
2
+
3
+ Placeholder package for the future Elytra CMS project initializer.
4
+
5
+ This package reserves the `npm create elytra` command while Elytra CMS is in
6
+ early development. The real initializer will replace this placeholder before
7
+ public release.
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
+ }