@overscore/cli 0.13.3 → 0.13.4

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/dist/index.js +6 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -261,6 +261,12 @@ const SOURCE_EXCLUDE = new Set([
261
261
  ".docker",
262
262
  ".gnupg",
263
263
  ".overscore",
264
+ // Raw exploratory query results (`query run` writes warehouse rows here).
265
+ // NEVER ship these in the deployed source bundle — they're real warehouse
266
+ // data. The analysis publish path already excludes data/ via .overscoreignore;
267
+ // this baseline exclusion protects the dashboard deploy path too, regardless of
268
+ // whether a project has a .overscoreignore.
269
+ "data",
264
270
  ]);
265
271
  const SECRET_FILE_EXTENSIONS = new Set([
266
272
  ".pem",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@overscore/cli",
3
- "version": "0.13.3",
3
+ "version": "0.13.4",
4
4
  "description": "CLI for deploying Overscore dashboards and publishing analyses",
5
5
  "bin": {
6
6
  "overscore": "dist/index.js"