We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ebad12 commit aa2eed7Copy full SHA for aa2eed7
2 files changed
.github/workflows/ci.yml
@@ -101,7 +101,7 @@ jobs:
101
path: ffxiv-datamining-cn
102
commit-message: "ver ${{ steps.export-csv.outputs.version }}"
103
branch: ci/ixion-${{ steps.export-csv.outputs.version }}
104
- base: staging
+ base: master
105
title: "ci: ver ${{ steps.export-csv.outputs.version }}"
106
body: |
107
This PR is automatically generated by [ixion](https://github.com/thewakingsands/ixion)
packages/exd/src/csv.ts
@@ -252,8 +252,6 @@ export class CSVExporter {
252
addBom = true,
253
) {
254
const outputFile = join(dir, csvName(sheet, language))
255
-
256
- console.log(`Writing ${outputFile}`)
257
writeFileSync(
258
outputFile,
259
addBom ? Buffer.concat([bom, Buffer.from(csv)]) : csv,
0 commit comments