Skip to content

Commit

Permalink
fix: Consider platform specific CRLF when generating d.ts files (#648)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbud authored Mar 13, 2024
1 parent 88dfa2c commit 8a521c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/histoire-vendors/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ export default defineConfig({
}),
{
name: 'define',
transform (code) {
transform(code) {
return code.replace(/__VUE_OPTIONS_API__/g, 'true')
},
},
{
name: 'process-build',
closeBundle () {
closeBundle() {
try {
const pkg = fs.readJsonSync('./package.json')
const tempDir = path.resolve('./node_modules/.temp/histoire-vendors')
Expand Down Expand Up @@ -68,7 +68,7 @@ export default defineConfig({
const filepath = file.replace(/\.d\.ts$/, '')
const content = `import Default from '${filepath}'
export default Default
export * from '${filepath}'\n`
export * from '${filepath}'\n`.replace(/\n/g, process.platform === 'win32' ? '\r\n' : '\n')
fs.writeFileSync(path.basename(file).replace(/^b-/, ''), content, 'utf-8')
}
// Exports (package.json)
Expand Down

0 comments on commit 8a521c0

Please sign in to comment.