ecopages 0.2.0-alpha.34 → 0.2.0-alpha.36
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/bin/launch-plan.js +1 -4
- package/package.json +4 -4
- package/CHANGELOG.md +0 -15
package/bin/launch-plan.js
CHANGED
|
@@ -37,11 +37,8 @@ function buildBunArgs(args, options, entryFile, hasConfig) {
|
|
|
37
37
|
}
|
|
38
38
|
return bunArgs;
|
|
39
39
|
}
|
|
40
|
-
function buildNodeArgs(args, options, entryFile,
|
|
40
|
+
function buildNodeArgs(args, options, entryFile, _hasConfig) {
|
|
41
41
|
const nodeArgs = [];
|
|
42
|
-
if (hasConfig) {
|
|
43
|
-
nodeArgs.push("--import", "./eco.config.js");
|
|
44
|
-
}
|
|
45
42
|
nodeArgs.push(entryFile, ...args);
|
|
46
43
|
if (options.reactFastRefresh) {
|
|
47
44
|
nodeArgs.push("--react-fast-refresh");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ecopages",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.36",
|
|
4
4
|
"description": "CLI utilities for Ecopages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"ecopages": "bin/cli.js"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@ecopages/core": "0.2.0-alpha.
|
|
33
|
-
"@ecopages/logger": "^0.2.
|
|
32
|
+
"@ecopages/core": "0.2.0-alpha.36",
|
|
33
|
+
"@ecopages/logger": "^0.2.3",
|
|
34
34
|
"citty": "^0.1.6",
|
|
35
35
|
"giget": "^2.0.0",
|
|
36
|
-
"tsx": "^4.
|
|
36
|
+
"tsx": "^4.22.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"bun-types": "*",
|
package/CHANGELOG.md
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to `ecopages` are documented here.
|
|
4
|
-
|
|
5
|
-
> **Note:** Changelog tracking begins at version `0.2.0`. Changes prior to this release are not recorded here but are available in the git history.
|
|
6
|
-
|
|
7
|
-
## [UNRELEASED] — TBD
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
- Localized the Node CLI `tsx` runtime dependency so `ecopages` no longer requires a globally installed `tsx` binary.
|
|
12
|
-
|
|
13
|
-
### Refactoring
|
|
14
|
-
|
|
15
|
-
- Simplified CLI runtime startup and removed the thin-host bootstrap path; runtime selection now follows explicit `--runtime` overrides, package-manager hints, and Bun availability.
|