summaryrefslogtreecommitdiff
path: root/packages/astro
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro')
-rw-r--r--packages/astro/snowpack-plugin-jsx.cjs67
-rw-r--r--packages/astro/src/config_manager.ts6
-rw-r--r--packages/astro/src/runtime.ts2
-rw-r--r--packages/astro/test/preact-component.test.js5
-rw-r--r--packages/astro/test/react-component.test.js4
5 files changed, 47 insertions, 37 deletions
diff --git a/packages/astro/snowpack-plugin-jsx.cjs b/packages/astro/snowpack-plugin-jsx.cjs
index f7b31b76f..7d751b73f 100644
--- a/packages/astro/snowpack-plugin-jsx.cjs
+++ b/packages/astro/snowpack-plugin-jsx.cjs
@@ -3,7 +3,7 @@ const colors = require('kleur/colors');
const loggerPromise = import('./dist/logger.js');
const { promises: fs } = require('fs');
-const babel = require('@babel/core')
+const babel = require('@babel/core');
const eslexer = require('es-module-lexer');
let error = (...args) => {};
@@ -27,10 +27,7 @@ function getLoader(fileExt) {
* @type {import('snowpack').SnowpackPluginFactory<PluginOptions>}
*/
module.exports = function jsxPlugin(config, options = {}) {
- const {
- configManager,
- logging,
- } = options;
+ const { configManager, logging } = options;
let didInit = false;
return {
@@ -59,39 +56,47 @@ module.exports = function jsxPlugin(config, options = {}) {
sourcesContent: config.mode !== 'production',
});
for (const warning of warnings) {
- error(logging, 'renderer', `${colors.bold('!')} ${filePath}
- ${warning.text}`);
+ error(
+ logging,
+ 'renderer',
+ `${colors.bold('!')} ${filePath}
+ ${warning.text}`
+ );
}
let renderers = await configManager.getRenderers();
- const importSources = new Set(renderers.map(({ jsxImportSource }) => jsxImportSource).filter(i => i));
+ const importSources = new Set(renderers.map(({ jsxImportSource }) => jsxImportSource).filter((i) => i));
const getRenderer = (importSource) => renderers.find(({ jsxImportSource }) => jsxImportSource === importSource);
const getTransformOptions = async (importSource) => {
const { name } = getRenderer(importSource);
const { default: renderer } = await import(name);
return renderer.jsxTransformOptions(transformContext);
- }
+ };
if (importSources.size === 0) {
- error(logging, 'renderer', `${colors.yellow(filePath)}
-Unable to resolve a renderer that handles JSX transforms! Please include a \`renderer\` plugin which supports JSX in your \`astro.config.mjs\` file.`);
-
+ error(
+ logging,
+ 'renderer',
+ `${colors.yellow(filePath)}
+Unable to resolve a renderer that handles JSX transforms! Please include a \`renderer\` plugin which supports JSX in your \`astro.config.mjs\` file.`
+ );
+
return {
'.js': {
code: `(() => {
throw new Error("Hello world!");
- })()`
+ })()`,
},
- }
+ };
}
// If we only have a single renderer, we can skip a bunch of work!
if (importSources.size === 1) {
- const result = transform(code, filePath, await getTransformOptions(Array.from(importSources)[0]))
+ const result = transform(code, filePath, await getTransformOptions(Array.from(importSources)[0]));
return {
'.js': {
- code: result.code || ''
+ code: result.code || '',
},
};
}
@@ -106,7 +111,7 @@ Unable to resolve a renderer that handles JSX transforms! Please include a \`ren
});
let imports = [];
- if (/import/.test(codeToScan)) {
+ if (/import/.test(codeToScan)) {
let [i] = eslexer.parse(codeToScan);
// @ts-ignore
imports = i;
@@ -138,39 +143,43 @@ Unable to resolve a renderer that handles JSX transforms! Please include a \`ren
if (!importSource) {
const importStatements = {
- 'react': "import React from 'react'",
- 'preact': "import { h } from 'preact'",
- 'solid-js': "import 'solid-js/web'"
- }
+ react: "import React from 'react'",
+ preact: "import { h } from 'preact'",
+ 'solid-js': "import 'solid-js/web'",
+ };
if (importSources.size > 1) {
const defaultRenderer = Array.from(importSources)[0];
- error(logging, 'renderer', `${colors.yellow(filePath)}
+ error(
+ logging,
+ 'renderer',
+ `${colors.yellow(filePath)}
Unable to resolve a renderer that handles this file! With more than one renderer enabled, you should include an import or use a pragma comment.
Add ${colors.cyan(importStatements[defaultRenderer] || `import '${defaultRenderer}';`)} or ${colors.cyan(`/* jsxImportSource: ${defaultRenderer} */`)} to this file.
-`);
+`
+ );
}
return {
'.js': {
- code: contents
+ code: contents,
},
- }
+ };
}
const result = transform(code, filePath, await getTransformOptions(importSource));
return {
'.js': {
- code: result.code || ''
+ code: result.code || '',
},
};
},
cleanup() {},
};
-}
+};
/**
- *
+ *
* @param code {string}
* @param id {string}
* @param opts {{ plugins?: import('@babel/core').PluginItem[], presets?: import('@babel/core').PluginItem[] }|undefined}
@@ -178,7 +187,7 @@ Add ${colors.cyan(importStatements[defaultRenderer] || `import '${defaultRendere
const transform = (code, id, { alias, plugins = [], presets = [] } = {}) =>
babel.transformSync(code, {
presets,
- plugins: [...plugins, alias ? ['babel-plugin-module-resolver', { root: process.cwd(), alias }] : undefined].filter(v => v),
+ plugins: [...plugins, alias ? ['babel-plugin-module-resolver', { root: process.cwd(), alias }] : undefined].filter((v) => v),
cwd: process.cwd(),
filename: id,
ast: false,
diff --git a/packages/astro/src/config_manager.ts b/packages/astro/src/config_manager.ts
index e63b126f5..c33f560fc 100644
--- a/packages/astro/src/config_manager.ts
+++ b/packages/astro/src/config_manager.ts
@@ -18,7 +18,9 @@ interface RendererInstance {
polyfills: string[];
hydrationPolyfills: string[];
jsxImportSource?: string;
- jsxTransformOptions?: (transformContext: Omit<PluginLoadOptions, 'filePath'|'fileExt'>) => undefined|{ plugins?: any[], presets?: any[] }|Promise<{ plugins?: any[], presets?: any[] }>
+ jsxTransformOptions?: (
+ transformContext: Omit<PluginLoadOptions, 'filePath' | 'fileExt'>
+ ) => undefined | { plugins?: any[]; presets?: any[] } | Promise<{ plugins?: any[]; presets?: any[] }>;
}
const CONFIG_MODULE_BASE_NAME = '__astro_config.js';
@@ -121,7 +123,7 @@ export class ConfigManager {
external: raw.external,
polyfills: polyfillsNormalized,
hydrationPolyfills: hydrationPolyfillsNormalized,
- jsxImportSource: raw.jsxImportSource
+ jsxImportSource: raw.jsxImportSource,
};
});
diff --git a/packages/astro/src/runtime.ts b/packages/astro/src/runtime.ts
index 6bf099b4a..acfa58400 100644
--- a/packages/astro/src/runtime.ts
+++ b/packages/astro/src/runtime.ts
@@ -325,7 +325,7 @@ async function createSnowpack(astroConfig: AstroConfig, options: CreateSnowpackO
astroConfig: AstroConfig;
hmrPort?: number;
mode: RuntimeMode;
- logging: LogOptions,
+ logging: LogOptions;
configManager: ConfigManager;
} = {
astroConfig,
diff --git a/packages/astro/test/preact-component.test.js b/packages/astro/test/preact-component.test.js
index 55debc8ad..67d071718 100644
--- a/packages/astro/test/preact-component.test.js
+++ b/packages/astro/test/preact-component.test.js
@@ -46,10 +46,9 @@ PreactComponent('Can use a pragma comment', async ({ runtime }) => {
assert.ok(!result.error, `build error: ${result.error}`);
const $ = doc(result.contents);
- assert.equal($('#pragma-comment').length, 1, "rendered the PragmaComment component.");
+ assert.equal($('#pragma-comment').length, 1, 'rendered the PragmaComment component.');
});
-
PreactComponent('Uses the new JSX transform', async ({ runtime }) => {
const result = await runtime.load('/pragma-comment');
@@ -63,7 +62,7 @@ PreactComponent('Uses the new JSX transform', async ({ runtime }) => {
}
}
const component = await runtime.load(componentUrl);
- const jsxRuntime = component.imports.filter(i => i.specifier.includes('jsx-runtime'));
+ const jsxRuntime = component.imports.filter((i) => i.specifier.includes('jsx-runtime'));
assert.ok(jsxRuntime, 'preact/jsx-runtime is used for the component');
});
diff --git a/packages/astro/test/react-component.test.js b/packages/astro/test/react-component.test.js
index 90b864925..c0f7d383a 100644
--- a/packages/astro/test/react-component.test.js
+++ b/packages/astro/test/react-component.test.js
@@ -86,9 +86,9 @@ React('uses the new JSX transform', async () => {
}
}
const component = await runtime.load(componentUrl);
- const jsxRuntime = component.imports.filter(i => i.specifier.includes('jsx-runtime'));
+ const jsxRuntime = component.imports.filter((i) => i.specifier.includes('jsx-runtime'));
assert.ok(jsxRuntime, 'react/jsx-runtime is used for the component');
-})
+});
React.run();