Skip to content

Commit a42897e

Browse files
authoredJun 27, 2024
fix: accept string literal keys in in-source config (#5745)
1 parent 1129823 commit a42897e

File tree

2 files changed

+41
-5
lines changed

2 files changed

+41
-5
lines changed
 

‎packages/zip-it-and-ship-it/src/runtimes/node/parser/exports.ts

+12-5
Original file line numberDiff line numberDiff line change
@@ -201,14 +201,21 @@ const parseConfigESMExport = (node: Statement) => {
201201
*/
202202
const parseObject = (node: ObjectExpression) =>
203203
node.properties.reduce((acc, property): Record<string, unknown> => {
204-
if (property.type !== 'ObjectProperty' || property.key.type !== 'Identifier') {
205-
return acc
204+
if (property.type === 'ObjectProperty' && property.key.type === 'Identifier') {
205+
return {
206+
...acc,
207+
[property.key.name]: parsePrimitive(property.value),
208+
}
206209
}
207210

208-
return {
209-
...acc,
210-
[property.key.name]: parsePrimitive(property.value),
211+
if (property.type === 'ObjectProperty' && property.key.type === 'StringLiteral') {
212+
return {
213+
...acc,
214+
[property.key.value]: parsePrimitive(property.value),
215+
}
211216
}
217+
218+
return acc
212219
}, {} as Record<string, unknown>)
213220

214221
/**

‎packages/zip-it-and-ship-it/tests/unit/runtimes/node/in_source_config.test.ts

+29
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,35 @@ describe('V2 API', () => {
378378
runtimeAPIVersion: 2,
379379
})
380380
})
381+
382+
test('Config export with string literal properties', () => {
383+
const source = `
384+
const handler = async () => ({ statusCode: 200, body: "Hello" })
385+
const config = { "path": "/products/:id", excludedPath: "/products/jacket" }
386+
export { config };
387+
export default handler
388+
`
389+
const isc = parseSource(source, options)
390+
expect(isc).toEqual({
391+
config: { path: ['/products/:id'], excludedPath: ['/products/jacket'] },
392+
excludedRoutes: [
393+
{
394+
literal: '/products/jacket',
395+
pattern: '/products/jacket',
396+
},
397+
],
398+
inputModuleFormat: 'esm',
399+
routes: [
400+
{
401+
expression: '^\\/products(?:\\/([^\\/]+?))\\/?$',
402+
methods: [],
403+
pattern: '/products/:id',
404+
prefer_static: undefined,
405+
},
406+
],
407+
runtimeAPIVersion: 2,
408+
})
409+
})
381410
})
382411

383412
describe('`scheduled` property', () => {

0 commit comments

Comments
 (0)
Please sign in to comment.