metabase-exporter 1.0.0 → 1.0.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 +1 -1
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -21,7 +21,7 @@ npm i
21
21
  Run the tool with source credentials and one or more target credentials.
22
22
 
23
23
  ```bash
24
- node src/index.js --source_creds '{
24
+ npx metabase-exporter --source_creds '{
25
25
  "baseUrl": "https://source.metabase.example",
26
26
  "userName": "admin@source",
27
27
  "password": "******"
package/package.json CHANGED
@@ -1,14 +1,17 @@
1
1
  {
2
2
  "name": "metabase-exporter",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "bin": {
5
5
  "metabase-exporter": "./src/index.js"
6
6
  },
7
7
  "description": "This is the cli tool which clones reports from single source metabse account to multiple destination accounts.",
8
8
  "dependencies": {
9
9
  "axios": "^1.12.2",
10
- "commander": "^14.0.2"
10
+ "commander": "^14.0.2",
11
+ "metabase-exporter": "^1.0.0"
11
12
  },
12
- "keywords": ["cli"],
13
+ "keywords": [
14
+ "cli"
15
+ ],
13
16
  "license": "MIT"
14
17
  }