create-nuxt-nightly 3.31.0-20251204-143945-2eb32d2 → 3.31.0-20251204-152034-7812d77
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/dist/index.mjs +5 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -20611,7 +20611,10 @@ const hiddenTemplates = [
|
|
|
20611
20611
|
const fetchOptions = {
|
|
20612
20612
|
timeout: 3e3,
|
|
20613
20613
|
responseType: "json",
|
|
20614
|
-
headers: {
|
|
20614
|
+
headers: {
|
|
20615
|
+
"user-agent": "@nuxt/cli",
|
|
20616
|
+
...process$1.env.GITHUB_TOKEN ? { authorization: `token ${process$1.env.GITHUB_TOKEN}` } : {}
|
|
20617
|
+
}
|
|
20615
20618
|
};
|
|
20616
20619
|
let templatesCache = null;
|
|
20617
20620
|
async function getTemplates() {
|
|
@@ -27726,7 +27729,7 @@ async function checkEngines() {
|
|
|
27726
27729
|
//#endregion
|
|
27727
27730
|
//#region package.json
|
|
27728
27731
|
var name = "create-nuxt-nightly";
|
|
27729
|
-
var version = "3.31.0-20251204-
|
|
27732
|
+
var version = "3.31.0-20251204-152034-7812d77";
|
|
27730
27733
|
var description = "Create a Nuxt app in seconds";
|
|
27731
27734
|
|
|
27732
27735
|
//#endregion
|