Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions esbuild.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ await esbuild.build({
format: 'esm',
plugins: [
AnalyzerPlugin({
outfile: 'stats/fsxa-api-esm.html',
outfile: 'stats/fsxa-api-es5.html',
})
],
})
Expand Down Expand Up @@ -105,7 +105,7 @@ await esbuild.build({
format: 'esm',
plugins: [
AnalyzerPlugin({
outfile: 'stats/fsxa-proxy-api-esm.html',
outfile: 'stats/fsxa-proxy-api-es5.html',
})
],
})
Expand Down Expand Up @@ -135,7 +135,7 @@ console.log('─'.repeat(60))

console.log('\n✓ Bundle analysis reports generated:')
console.log(' - stats/fsxa-api-cjs.html')
console.log(' - stats/fsxa-api-esm.html')
console.log(' - stats/fsxa-api-es5.html')
console.log(' - stats/fsxa-proxy-api-cjs.html')
console.log(' - stats/fsxa-proxy-api-esm.html')
console.log(' - stats/fsxa-proxy-api-es5.html')
console.log('\nBuild complete!')
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/fsxa-api.esm.js",
"import": "./dist/fsxa-api.es5.js",
"require": "./dist/fsxa-api.cjs.js",
"default": "./dist/fsxa-api.cjs.js"
}
Expand Down
2 changes: 1 addition & 1 deletion proxy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/fsxa-proxy-api.csm.js",
"import": "./dist/fsxa-proxy-api.es5.js",
"require": "./dist/fsxa-proxy-api.cjs.js",
"default": "./dist/fsxa-proxy-api.cjs.js"
}
Expand Down
Loading