Skip to content

Commit 7991180

Browse files
authoredOct 9, 2023
fix(build): handle .mjs/.mts files as data / path loaders (#3058)
1 parent 1a461c0 commit 7991180

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed
 

‎__tests__/e2e/data-loading/data.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Static Data
22

33
<script setup lang="ts">
4-
import { data } from './basic.data.js'
4+
import { data } from './basic.data.mjs'
55
import { data as contentData } from './contentLoader.data.js'
66
</script>
77

‎src/node/plugins/dynamicRoutesPlugin.ts

+14-12
Original file line numberDiff line numberDiff line change
@@ -162,19 +162,21 @@ export async function resolveDynamicRoutes(
162162
for (const route of routes) {
163163
// locate corresponding route paths file
164164
const fullPath = normalizePath(path.resolve(srcDir, route))
165-
const jsPathsFile = fullPath.replace(/\.md$/, '.paths.js')
166-
let pathsFile = jsPathsFile
167-
if (!fs.existsSync(jsPathsFile)) {
168-
pathsFile = fullPath.replace(/\.md$/, '.paths.ts')
169-
if (!fs.existsSync(pathsFile)) {
170-
console.warn(
171-
c.yellow(
172-
`Missing paths file for dynamic route ${route}: ` +
173-
`a corresponding ${jsPathsFile} or ${pathsFile} is needed.`
174-
)
165+
166+
const paths = ['js', 'ts', 'mjs', 'mts'].map((ext) =>
167+
fullPath.replace(/\.md$/, `.paths.${ext}`)
168+
)
169+
170+
const pathsFile = paths.find((p) => fs.existsSync(p))
171+
172+
if (pathsFile == null) {
173+
console.warn(
174+
c.yellow(
175+
`Missing paths file for dynamic route ${route}: ` +
176+
`a corresponding ${paths[0]} (or .ts/.mjs/.mts) file is needed.`
175177
)
176-
continue
177-
}
178+
)
179+
continue
178180
}
179181

180182
// load the paths loader module

‎src/node/plugins/staticDataPlugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import path, { dirname, resolve } from 'path'
88
import { isMatch } from 'micromatch'
99
import glob from 'fast-glob'
1010

11-
const loaderMatch = /\.data\.(j|t)s($|\?)/
11+
const loaderMatch = /\.data\.m?(j|t)s($|\?)/
1212

1313
let server: ViteDevServer
1414

0 commit comments

Comments
 (0)
Please sign in to comment.