astro 1.1.4 → 1.1.7

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.
@@ -1,5 +1,4 @@
1
1
  import { prependForwardSlash } from "../../core/path.js";
2
- import { resolveClientDevPath } from "../../core/render/dev/resolve.js";
3
2
  import { getTopLevelPages } from "./graph.js";
4
3
  import { getPageDataByViteID, trackClientOnlyPageDatas } from "./internal.js";
5
4
  function vitePluginAnalyzer(internals) {
@@ -66,14 +65,14 @@ function vitePluginAnalyzer(internals) {
66
65
  continue;
67
66
  const astro = info.meta.astro;
68
67
  for (const c of astro.hydratedComponents) {
69
- const rid = c.resolvedPath ? resolveClientDevPath(c.resolvedPath) : c.specifier;
68
+ const rid = c.resolvedPath ? decodeURI(c.resolvedPath) : c.specifier;
70
69
  internals.discoveredHydratedComponents.add(rid);
71
70
  }
72
71
  hoistScanner.scan.call(this, astro.scripts, id);
73
72
  if (astro.clientOnlyComponents.length) {
74
73
  const clientOnlys = [];
75
74
  for (const c of astro.clientOnlyComponents) {
76
- const cid = c.resolvedPath ? resolveClientDevPath(c.resolvedPath) : c.specifier;
75
+ const cid = c.resolvedPath ? decodeURI(c.resolvedPath) : c.specifier;
77
76
  internals.discoveredClientOnlyComponents.add(cid);
78
77
  clientOnlys.push(cid);
79
78
  }
@@ -92,6 +92,7 @@ function rollupPluginAstroBuildCSS(options) {
92
92
  if (Object.keys(c.modules).every((id) => internals.cssChunkModuleIds.has(id))) {
93
93
  for (const importedCssImport of meta.importedCss) {
94
94
  delete bundle[importedCssImport];
95
+ meta.importedCss.delete(importedCssImport);
95
96
  }
96
97
  return;
97
98
  }
@@ -1,4 +1,6 @@
1
1
  import fs from "fs";
2
+ import { createRequire } from "module";
3
+ import path from "path";
2
4
  import { fileURLToPath } from "url";
3
5
  import * as vite from "vite";
4
6
  import astroPostprocessVitePlugin from "../vite-plugin-astro-postprocess/index.js";
@@ -116,32 +118,82 @@ function sortPlugins(pluginOptions) {
116
118
  pluginOptions.splice(jsxPluginIndex, 0, mdxPlugin);
117
119
  }
118
120
  async function getAstroPackages({ root }) {
119
- const pkgUrl = new URL("./package.json", root);
120
- const pkgPath = fileURLToPath(pkgUrl);
121
- if (!fs.existsSync(pkgPath))
122
- return [];
123
- const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf8"));
124
- const deps = [...Object.keys(pkg.dependencies || {}), ...Object.keys(pkg.devDependencies || {})];
125
- return deps.filter((dep) => {
126
- if (isCommonNotAstro(dep))
127
- return false;
128
- if (/^astro\-/.test(dep))
129
- return true;
130
- const depPkgUrl = new URL(`./node_modules/${dep}/package.json`, root);
131
- const depPkgPath = fileURLToPath(depPkgUrl);
132
- if (!fs.existsSync(depPkgPath))
133
- return false;
134
- const {
135
- dependencies = {},
136
- peerDependencies = {},
137
- keywords = []
138
- } = JSON.parse(fs.readFileSync(depPkgPath, "utf-8"));
139
- if (peerDependencies.astro || dependencies.astro)
140
- return true;
141
- if (keywords.includes("astro") || keywords.includes("astro-component"))
142
- return true;
143
- return false;
144
- });
121
+ const { astroPackages } = new DependencyWalker(root);
122
+ return astroPackages;
123
+ }
124
+ class DependencyWalker {
125
+ constructor(root) {
126
+ this.astroDeps = /* @__PURE__ */ new Set();
127
+ this.nonAstroDeps = /* @__PURE__ */ new Set();
128
+ const pkgUrl = new URL("./package.json", root);
129
+ this.require = createRequire(pkgUrl);
130
+ const pkgPath = fileURLToPath(pkgUrl);
131
+ if (!fs.existsSync(pkgPath))
132
+ return;
133
+ const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf8"));
134
+ const deps = [
135
+ ...Object.keys(pkg.dependencies || {}),
136
+ ...Object.keys(pkg.devDependencies || {})
137
+ ];
138
+ this.scanDependencies(deps);
139
+ }
140
+ get astroPackages() {
141
+ return Array.from(this.astroDeps);
142
+ }
143
+ seen(dep) {
144
+ return this.astroDeps.has(dep) || this.nonAstroDeps.has(dep);
145
+ }
146
+ readPkgJSON(dir) {
147
+ try {
148
+ const filePath = path.join(dir, "package.json");
149
+ return JSON.parse(fs.readFileSync(filePath, "utf-8"));
150
+ } catch (e) {
151
+ }
152
+ }
153
+ resolvePkgJSON(dep) {
154
+ try {
155
+ const pkgJson = this.require(dep + "/package.json");
156
+ return pkgJson;
157
+ } catch (e) {
158
+ try {
159
+ let dir = path.dirname(this.require.resolve(dep));
160
+ while (dir) {
161
+ const pkgJSON = this.readPkgJSON(dir);
162
+ if (pkgJSON && pkgJSON.name === dep)
163
+ return pkgJSON;
164
+ const parentDir = path.dirname(dir);
165
+ if (parentDir === dir)
166
+ break;
167
+ dir = parentDir;
168
+ }
169
+ } catch {
170
+ }
171
+ }
172
+ }
173
+ scanDependencies(deps) {
174
+ const newDeps = [];
175
+ for (const dep of deps) {
176
+ if (isCommonNotAstro(dep)) {
177
+ this.nonAstroDeps.add(dep);
178
+ continue;
179
+ }
180
+ const pkgJson = this.resolvePkgJSON(dep);
181
+ if (!pkgJson) {
182
+ this.nonAstroDeps.add(dep);
183
+ continue;
184
+ }
185
+ const { dependencies = {}, peerDependencies = {}, keywords = [] } = pkgJson;
186
+ if (peerDependencies.astro || dependencies.astro || keywords.includes("astro") || keywords.includes("astro-component") || /^(@[^\/]+\/)?astro\-/.test(dep)) {
187
+ this.astroDeps.add(dep);
188
+ const unknownDependencies = Object.keys(dependencies).filter((d) => !this.seen(d));
189
+ newDeps.push(...unknownDependencies);
190
+ } else {
191
+ this.nonAstroDeps.add(dep);
192
+ }
193
+ }
194
+ if (newDeps.length)
195
+ this.scanDependencies(newDeps);
196
+ }
145
197
  }
146
198
  const COMMON_DEPENDENCIES_NOT_ASTRO = [
147
199
  "autoprefixer",
@@ -46,7 +46,7 @@ async function dev(config, options) {
46
46
  https: !!((_a = viteConfig.server) == null ? void 0 : _a.https)
47
47
  })
48
48
  );
49
- const currentVersion = "1.1.4";
49
+ const currentVersion = "1.1.7";
50
50
  if (currentVersion.includes("-")) {
51
51
  warn(options.logging, null, msg.prerelease({ currentVersion }));
52
52
  }
@@ -46,7 +46,7 @@ function devStart({
46
46
  https,
47
47
  site
48
48
  }) {
49
- const version = "1.1.4";
49
+ const version = "1.1.7";
50
50
  const rootPath = site ? site.pathname : "/";
51
51
  const localPrefix = `${dim("\u2503")} Local `;
52
52
  const networkPrefix = `${dim("\u2503")} Network `;
@@ -225,7 +225,7 @@ function printHelp({
225
225
  message.push(
226
226
  linebreak(),
227
227
  ` ${bgGreen(black(` ${commandName} `))} ${green(
228
- `v${"1.1.4"}`
228
+ `v${"1.1.7"}`
229
229
  )} ${headline}`
230
230
  );
231
231
  }
@@ -3,14 +3,14 @@ import { viteID } from "../../util.js";
3
3
  import { STYLE_EXTENSIONS } from "../util.js";
4
4
  import { crawlGraph } from "./vite.js";
5
5
  async function getStylesForURL(filePath, viteServer, mode) {
6
- var _a;
7
6
  const importedCssUrls = /* @__PURE__ */ new Set();
8
7
  const importedStylesMap = /* @__PURE__ */ new Map();
9
8
  for await (const importedModule of crawlGraph(viteServer, viteID(filePath), true)) {
10
9
  const ext = path.extname(importedModule.url).toLowerCase();
11
10
  if (STYLE_EXTENSIONS.has(ext)) {
12
- if (mode === "development" && typeof ((_a = importedModule.ssrModule) == null ? void 0 : _a.default) === "string") {
13
- importedStylesMap.set(importedModule.url, importedModule.ssrModule.default);
11
+ const ssrModule = importedModule.ssrModule ?? await viteServer.ssrLoadModule(importedModule.url);
12
+ if (mode === "development" && typeof (ssrModule == null ? void 0 : ssrModule.default) === "string") {
13
+ importedStylesMap.set(importedModule.url, ssrModule.default);
14
14
  } else {
15
15
  importedCssUrls.add(importedModule.url);
16
16
  }
package/dist/core/util.js CHANGED
@@ -5,7 +5,7 @@ import resolve from "resolve";
5
5
  import slash from "slash";
6
6
  import { fileURLToPath, pathToFileURL } from "url";
7
7
  import { prependForwardSlash, removeTrailingForwardSlash } from "./path.js";
8
- const ASTRO_VERSION = "1.1.4";
8
+ const ASTRO_VERSION = "1.1.7";
9
9
  function isObject(value) {
10
10
  return typeof value === "object" && value != null;
11
11
  }
package/dist/jsx/babel.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import * as t from "@babel/types";
2
2
  import { pathToFileURL } from "node:url";
3
+ import { resolveClientDevPath } from "../core/render/dev/resolve.js";
3
4
  import { HydrationDirectiveProps } from "../runtime/server/hydration.js";
4
5
  const ClientOnlyPlaceholder = "astro-client-only";
5
6
  function isComponent(tagName) {
@@ -184,7 +185,8 @@ function astroJSX() {
184
185
  break;
185
186
  }
186
187
  if (namespace.at(0) === local) {
187
- path.setData("import", { name: imported, path: source });
188
+ const name = imported === "*" ? imported : tagName;
189
+ path.setData("import", { name, path: source });
188
190
  break;
189
191
  }
190
192
  }
@@ -194,10 +196,7 @@ function astroJSX() {
194
196
  let resolvedPath;
195
197
  if (meta.path.startsWith(".")) {
196
198
  const fileURL = pathToFileURL(state.filename);
197
- resolvedPath = `/@fs${new URL(meta.path, fileURL).pathname}`;
198
- if (resolvedPath.endsWith(".jsx")) {
199
- resolvedPath = resolvedPath.slice(0, -4);
200
- }
199
+ resolvedPath = resolveClientDevPath(`/@fs${new URL(meta.path, fileURL).pathname}`);
201
200
  } else {
202
201
  resolvedPath = meta.path;
203
202
  }
@@ -273,10 +272,7 @@ function astroJSX() {
273
272
  let resolvedPath;
274
273
  if (meta.path.startsWith(".")) {
275
274
  const fileURL = pathToFileURL(state.filename);
276
- resolvedPath = `/@fs${new URL(meta.path, fileURL).pathname}`;
277
- if (resolvedPath.endsWith(".jsx")) {
278
- resolvedPath = resolvedPath.slice(0, -4);
279
- }
275
+ resolvedPath = resolveClientDevPath(`/@fs${new URL(meta.path, fileURL).pathname}`);
280
276
  } else {
281
277
  resolvedPath = meta.path;
282
278
  }
@@ -1,4 +1,4 @@
1
- const ASTRO_VERSION = "1.1.4";
1
+ const ASTRO_VERSION = "1.1.7";
2
2
  function createDeprecatedFetchContentFn() {
3
3
  return () => {
4
4
  throw new Error("Deprecated: Astro.fetchContent() has been replaced with Astro.glob().");
@@ -85,11 +85,11 @@ async function generateHydrateScript(scriptOptions, metadata) {
85
85
  island.props[key] = value;
86
86
  }
87
87
  }
88
- island.props["component-url"] = await result.resolve(componentUrl);
88
+ island.props["component-url"] = await result.resolve(decodeURI(componentUrl));
89
89
  if (renderer.clientEntrypoint) {
90
90
  island.props["component-export"] = componentExport.value;
91
- island.props["renderer-url"] = await result.resolve(renderer.clientEntrypoint);
92
- island.props["props"] = escapeHTML(serializeProps(props));
91
+ island.props["renderer-url"] = await result.resolve(decodeURI(renderer.clientEntrypoint));
92
+ island.props["props"] = escapeHTML(serializeProps(props, metadata));
93
93
  }
94
94
  island.props["ssr"] = "";
95
95
  island.props["client"] = hydrate;
@@ -231,7 +231,8 @@ If you're still stuck, please open an issue on GitHub or join us at https://astr
231
231
  `<!--${metadata.componentExport.value}:${metadata.componentUrl}-->
232
232
  ${html}
233
233
  ${serializeProps(
234
- props
234
+ props,
235
+ metadata
235
236
  )}`
236
237
  );
237
238
  const island = await generateHydrateScript(
@@ -1 +1,2 @@
1
- export declare function serializeProps(props: any): string;
1
+ import type { AstroComponentMetadata } from '../../@types/astro';
2
+ export declare function serializeProps(props: any, metadata: AstroComponentMetadata): string;
@@ -8,17 +8,23 @@ const PROP_TYPE = {
8
8
  BigInt: 6,
9
9
  URL: 7
10
10
  };
11
- function serializeArray(value) {
12
- return value.map((v) => convertToSerializedForm(v));
11
+ function serializeArray(value, metadata) {
12
+ return value.map((v) => convertToSerializedForm(v, metadata));
13
13
  }
14
- function serializeObject(value) {
14
+ function serializeObject(value, metadata) {
15
+ if (cyclicRefs.has(value)) {
16
+ throw new Error(`Cyclic reference detected while serializing props for <${metadata.displayName} client:${metadata.hydrate}>!
17
+
18
+ Cyclic references cannot be safely serialized for client-side usage. Please remove the cyclic reference.`);
19
+ }
20
+ cyclicRefs.add(value);
15
21
  return Object.fromEntries(
16
22
  Object.entries(value).map(([k, v]) => {
17
- return [k, convertToSerializedForm(v)];
23
+ return [k, convertToSerializedForm(v, metadata)];
18
24
  })
19
25
  );
20
26
  }
21
- function convertToSerializedForm(value) {
27
+ function convertToSerializedForm(value, metadata) {
22
28
  const tag = Object.prototype.toString.call(value);
23
29
  switch (tag) {
24
30
  case "[object Date]": {
@@ -28,10 +34,16 @@ function convertToSerializedForm(value) {
28
34
  return [PROP_TYPE.RegExp, value.source];
29
35
  }
30
36
  case "[object Map]": {
31
- return [PROP_TYPE.Map, JSON.stringify(serializeArray(Array.from(value)))];
37
+ return [
38
+ PROP_TYPE.Map,
39
+ JSON.stringify(serializeArray(Array.from(value), metadata))
40
+ ];
32
41
  }
33
42
  case "[object Set]": {
34
- return [PROP_TYPE.Set, JSON.stringify(serializeArray(Array.from(value)))];
43
+ return [
44
+ PROP_TYPE.Set,
45
+ JSON.stringify(serializeArray(Array.from(value), metadata))
46
+ ];
35
47
  }
36
48
  case "[object BigInt]": {
37
49
  return [PROP_TYPE.BigInt, value.toString()];
@@ -40,19 +52,22 @@ function convertToSerializedForm(value) {
40
52
  return [PROP_TYPE.URL, value.toString()];
41
53
  }
42
54
  case "[object Array]": {
43
- return [PROP_TYPE.JSON, JSON.stringify(serializeArray(value))];
55
+ return [PROP_TYPE.JSON, JSON.stringify(serializeArray(value, metadata))];
44
56
  }
45
57
  default: {
46
58
  if (value !== null && typeof value === "object") {
47
- return [PROP_TYPE.Value, serializeObject(value)];
59
+ return [PROP_TYPE.Value, serializeObject(value, metadata)];
48
60
  } else {
49
61
  return [PROP_TYPE.Value, value];
50
62
  }
51
63
  }
52
64
  }
53
65
  }
54
- function serializeProps(props) {
55
- return JSON.stringify(serializeObject(props));
66
+ let cyclicRefs = /* @__PURE__ */ new WeakSet();
67
+ function serializeProps(props, metadata) {
68
+ const serialized = JSON.stringify(serializeObject(props, metadata));
69
+ cyclicRefs = /* @__PURE__ */ new WeakSet();
70
+ return serialized;
56
71
  }
57
72
  export {
58
73
  serializeProps
@@ -83,6 +83,7 @@ async function handle404Response(origin, config, req, res) {
83
83
  async function handle500Response(viteServer, origin, req, res, err) {
84
84
  res.on("close", () => setTimeout(() => viteServer.ws.send(getViteErrorPayload(err)), 200));
85
85
  if (res.headersSent) {
86
+ res.write(`<script type="module" src="/@vite/client"><\/script>`);
86
87
  res.end();
87
88
  } else {
88
89
  writeHtmlResponse(
@@ -112,7 +112,7 @@ function jsx({ config, logging }) {
112
112
  enforce: "pre",
113
113
  async configResolved(resolvedConfig) {
114
114
  viteConfig = resolvedConfig;
115
- const possibleRenderers = await collectJSXRenderers(config._ctx.renderers);
115
+ const possibleRenderers = collectJSXRenderers(config._ctx.renderers);
116
116
  for (const [importSource, renderer] of possibleRenderers) {
117
117
  jsxRenderers.set(importSource, renderer);
118
118
  if (importSource === "astro") {
@@ -163,8 +163,8 @@ function jsx({ config, logging }) {
163
163
  if (!importSource && IMPORT_KEYWORD_REGEX.test(code)) {
164
164
  importSource = await detectImportSourceFromImports(code, id, jsxRenderers);
165
165
  }
166
- if (!importSource) {
167
- const [defaultRendererName] = defaultJSXRendererEntry[0];
166
+ if (!importSource && defaultJSXRendererEntry) {
167
+ const [defaultRendererName] = defaultJSXRendererEntry;
168
168
  error(
169
169
  logging,
170
170
  "renderer",
@@ -173,6 +173,16 @@ Unable to resolve a renderer that handles this file! With more than one renderer
173
173
  Add ${colors.cyan(
174
174
  IMPORT_STATEMENTS[defaultRendererName] || `import '${defaultRendererName}';`
175
175
  )} or ${colors.cyan(`/* jsxImportSource: ${defaultRendererName} */`)} to this file.
176
+ `
177
+ );
178
+ return null;
179
+ } else if (!importSource) {
180
+ error(
181
+ logging,
182
+ "renderer",
183
+ `${colors.yellow(id)}
184
+ Unable to find a renderer for JSX. Do you have one configured in your Astro config? See this page to learn how:
185
+ https://docs.astro.build/en/core-concepts/framework-components/#installing-integrations
176
186
  `
177
187
  );
178
188
  return null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro",
3
- "version": "1.1.4",
3
+ "version": "1.1.7",
4
4
  "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
5
5
  "type": "module",
6
6
  "author": "withastro",
@@ -82,7 +82,7 @@
82
82
  "vendor"
83
83
  ],
84
84
  "dependencies": {
85
- "@astrojs/compiler": "^0.23.4",
85
+ "@astrojs/compiler": "^0.23.5",
86
86
  "@astrojs/language-server": "^0.23.0",
87
87
  "@astrojs/markdown-remark": "^1.1.1",
88
88
  "@astrojs/telemetry": "^1.0.0",