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.
Files changed (2) hide show
  1. package/dist/index.mjs +5 -2
  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: { "user-agent": "@nuxt/cli" }
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-143945-2eb32d2";
27732
+ var version = "3.31.0-20251204-152034-7812d77";
27730
27733
  var description = "Create a Nuxt app in seconds";
27731
27734
 
27732
27735
  //#endregion
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-nuxt-nightly",
3
3
  "type": "module",
4
- "version": "3.31.0-20251204-143945-2eb32d2",
4
+ "version": "3.31.0-20251204-152034-7812d77",
5
5
  "description": "Create a Nuxt app in seconds",
6
6
  "license": "MIT",
7
7
  "repository": {