File tree 2 files changed +41
-5
lines changed
packages/zip-it-and-ship-it
2 files changed +41
-5
lines changed Original file line number Diff line number Diff line change @@ -201,14 +201,21 @@ const parseConfigESMExport = (node: Statement) => {
201
201
*/
202
202
const parseObject = ( node : ObjectExpression ) =>
203
203
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
+ }
206
209
}
207
210
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
+ }
211
216
}
217
+
218
+ return acc
212
219
} , { } as Record < string , unknown > )
213
220
214
221
/**
Original file line number Diff line number Diff line change @@ -378,6 +378,35 @@ describe('V2 API', () => {
378
378
runtimeAPIVersion : 2 ,
379
379
} )
380
380
} )
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
+ } )
381
410
} )
382
411
383
412
describe ( '`scheduled` property' , ( ) => {
You can’t perform that action at this time.
0 commit comments