web-csv-toolbox 0.0.0-next-20240611135902 → 0.0.0-next-20240611140926

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +6 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-csv-toolbox",
3
- "version": "0.0.0-next-20240611135902",
3
+ "version": "0.0.0-next-20240611140926",
4
4
  "description": "A CSV Toolbox utilizing Web Standard APIs.",
5
5
  "type": "module",
6
6
  "main": "dist/cjs/web-csv-toolbox.cjs",
@@ -87,7 +87,6 @@
87
87
  "@wasm-tool/rollup-plugin-rust": "^2.4.5",
88
88
  "changesets-github-release": "^0.1.0",
89
89
  "fast-check": "^3.15.0",
90
- "lefthook": "^1.6.7",
91
90
  "terser": "^5.27.0",
92
91
  "typedoc": "^0.25.7",
93
92
  "typedoc-plugin-mdn-links": "^3.1.14",
@@ -101,7 +100,8 @@
101
100
  "doc": "typedoc",
102
101
  "test": "vitest",
103
102
  "check:type": "tsc --noEmit",
104
- "check:format": "biome ci .",
103
+ "check:format": "pnpm check:format:js",
104
+ "check:format:js": "biome ci .",
105
105
  "test:browser": "vitest --browser",
106
106
  "test:coverage": "vitest --coverage",
107
107
  "test:bench": "pnpm --filter web-csv-toolbox-benchmark start",
@@ -110,6 +110,8 @@
110
110
  "build:js": "vite build",
111
111
  "build:browser": "vite build --config config/vite.config.umd.ts",
112
112
  "serve": "vite serve",
113
- "format": "biome check --apply ."
113
+ "format": "pnpm format:js && pnpm format:rust",
114
+ "format:js": "biome check --apply .",
115
+ "format:rust": "cargo fmt --manifest-path web-csv-toolbox-wasm/Cargo.toml --all && cargo clippy --manifest-path web-csv-toolbox-wasm/Cargo.toml --all-targets --all-features"
114
116
  }
115
117
  }