@utoo/pack 0.0.1-alpha.48 → 0.0.1-alpha.49
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/cjs/dev.js +3 -1
- package/esm/dev.js +3 -1
- package/package.json +8 -8
package/cjs/dev.js
CHANGED
|
@@ -132,7 +132,9 @@ async function startServer(serverOptions, bundleOptions, projectPath, rootPath)
|
|
|
132
132
|
if (portRetryCount) {
|
|
133
133
|
console.warn(`Port ${originalPort} is in use, using available port ${port} instead.`);
|
|
134
134
|
}
|
|
135
|
-
|
|
135
|
+
if (process.env.TURBOPACK_DEBUG_JS) {
|
|
136
|
+
console.log(`Listening on ${serverOptions.https ? "https" : "http"}://${formattedHostname}:${port} ...`);
|
|
137
|
+
}
|
|
136
138
|
try {
|
|
137
139
|
let cleanupStarted = false;
|
|
138
140
|
let closeUpgraded = null;
|
package/esm/dev.js
CHANGED
|
@@ -118,7 +118,9 @@ export async function startServer(serverOptions, bundleOptions, projectPath, roo
|
|
|
118
118
|
if (portRetryCount) {
|
|
119
119
|
console.warn(`Port ${originalPort} is in use, using available port ${port} instead.`);
|
|
120
120
|
}
|
|
121
|
-
|
|
121
|
+
if (process.env.TURBOPACK_DEBUG_JS) {
|
|
122
|
+
console.log(`Listening on ${serverOptions.https ? "https" : "http"}://${formattedHostname}:${port} ...`);
|
|
123
|
+
}
|
|
122
124
|
try {
|
|
123
125
|
let cleanupStarted = false;
|
|
124
126
|
let closeUpgraded = null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@utoo/pack",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.49",
|
|
4
4
|
"main": "cjs/index.js",
|
|
5
5
|
"module": "esm/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -85,12 +85,12 @@
|
|
|
85
85
|
},
|
|
86
86
|
"repository": "git@github.com:utooland/utoo.git",
|
|
87
87
|
"optionalDependencies": {
|
|
88
|
-
"@utoo/pack-darwin-arm64": "0.0.1-alpha.
|
|
89
|
-
"@utoo/pack-darwin-x64": "0.0.1-alpha.
|
|
90
|
-
"@utoo/pack-linux-arm64-gnu": "0.0.1-alpha.
|
|
91
|
-
"@utoo/pack-linux-arm64-musl": "0.0.1-alpha.
|
|
92
|
-
"@utoo/pack-linux-x64-gnu": "0.0.1-alpha.
|
|
93
|
-
"@utoo/pack-linux-x64-musl": "0.0.1-alpha.
|
|
94
|
-
"@utoo/pack-win32-x64-msvc": "0.0.1-alpha.
|
|
88
|
+
"@utoo/pack-darwin-arm64": "0.0.1-alpha.49",
|
|
89
|
+
"@utoo/pack-darwin-x64": "0.0.1-alpha.49",
|
|
90
|
+
"@utoo/pack-linux-arm64-gnu": "0.0.1-alpha.49",
|
|
91
|
+
"@utoo/pack-linux-arm64-musl": "0.0.1-alpha.49",
|
|
92
|
+
"@utoo/pack-linux-x64-gnu": "0.0.1-alpha.49",
|
|
93
|
+
"@utoo/pack-linux-x64-musl": "0.0.1-alpha.49",
|
|
94
|
+
"@utoo/pack-win32-x64-msvc": "0.0.1-alpha.49"
|
|
95
95
|
}
|
|
96
96
|
}
|