bqcost 0.1.0 → 0.1.1

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 (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +10 -4
package/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # bqcost
2
2
 
3
+ [![npm](https://img.shields.io/npm/v/bqcost?color=cb3837&logo=npm)](https://www.npmjs.com/package/bqcost)
4
+ [![CI](https://github.com/dagryazev/bqcost/actions/workflows/ci.yml/badge.svg)](https://github.com/dagryazev/bqcost/actions/workflows/ci.yml)
5
+ [![license: MIT](https://img.shields.io/npm/l/bqcost)](LICENSE)
6
+ [![node](https://img.shields.io/node/v/bqcost)](https://www.npmjs.com/package/bqcost)
7
+
3
8
  **Catch the BigQuery query that would've cost $10k — in your PR.**
4
9
 
5
10
  `sqlfluff` catches your style. **bqcost catches the query that scans 3 TB.** It dry-runs every
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bqcost",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Catch the BigQuery query that would've cost $10k — in your PR. Dry-run cost + regression gate for CI.",
5
5
  "keywords": [
6
6
  "bigquery",
@@ -23,9 +23,15 @@
23
23
  "license": "MIT",
24
24
  "author": "Denis Gryazev",
25
25
  "type": "module",
26
- "bin": { "bqcost": "dist/cli.js" },
27
- "files": ["dist"],
28
- "engines": { "node": ">=18" },
26
+ "bin": {
27
+ "bqcost": "dist/cli.js"
28
+ },
29
+ "files": [
30
+ "dist"
31
+ ],
32
+ "engines": {
33
+ "node": ">=18"
34
+ },
29
35
  "scripts": {
30
36
  "build": "tsup",
31
37
  "test": "vitest run",