Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Consider platform specific CRLF when generating d.ts files #648

Merged
merged 1 commit into from
Mar 13, 2024
Merged
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
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
Loading