Skip to content

Commit

Permalink
Merge branch 'release/v0.17.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
holtwick committed Mar 11, 2024
2 parents ee484c6 + e5e167d commit b4a059f
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 18 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021-2023 Dirk Holtwick
Copyright (c) 2021-2024 Dirk Holtwick

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 1 addition & 0 deletions demos/tests/src/test-unit-all.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/// <reference types="vite/client" />
/* eslint-disable no-console */

export {}
Expand Down
5 changes: 5 additions & 0 deletions jsr.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name": "@ho/zeed",
"version": "0.17.0",
"exports": "./src/index.all.ts"
}
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zeed",
"type": "module",
"version": "0.17.0",
"version": "0.17.1",
"description": "🌱 Simple foundation library",
"author": {
"name": "Dirk Holtwick",
Expand Down Expand Up @@ -50,7 +50,7 @@
"scripts": {
"build": "nr clean && NODE_ENV=production tsup",
"build:docs": "nlx typedoc src/index.all.ts",
"check": "tsc --noEmit -p tsconfig.json",
"check": "tsc --noEmit --skipLibCheck",
"credits": "nlx credits-cli",
"circles": "nlx madge --circular --summary --orphans --leaves --warning --extensions ts src",
"upload:docs": "nr build:docs && rsync -avz docs/* cy:public_html/zeed.holtwick.de",
Expand All @@ -65,15 +65,15 @@
"watch": "nr build -- --watch"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@antfu/eslint-config": "^2.8.0",
"@antfu/ni": "^0.21.12",
"@types/node": "^20.11.16",
"@vitest/coverage-v8": "^1.2.2",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2"
"@types/node": "^20.11.25",
"@vitest/coverage-v8": "^1.3.1",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vitest": "^1.3.1"
}
}
5 changes: 2 additions & 3 deletions src/common/csv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ export function csvStringify(data: any[], opt: {
} = {}): string {
const { separator = defaultSeparator } = opt
let body = ''
if (opt.addBom) {
body = '\ufeff'
}
if (opt.addBom)
body = '\uFEFF'

// Append the header row to the response if requested
// if (header)
Expand Down
3 changes: 0 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@
"src/**/*.ts",
"demos/**/*.ts",
"*.ts"
// "tsup.config.ts",
// "vitest-setup.ts",
// "vitest.config.ts"
],
"exclude": [
"_archive",
Expand Down

0 comments on commit b4a059f

Please sign in to comment.