@sqlanvil/cli 0.0.0

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 (3) hide show
  1. package/README.md +12 -0
  2. package/index.js +6 -0
  3. package/package.json +19 -0
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # @sqlanvil/cli
2
+
3
+ **Status: placeholder. Not usable yet.**
4
+
5
+ sqlanvil is an open-source SQL workflow tool for BigQuery + PostgreSQL +
6
+ Supabase, forked from Dataform's OSS core. Active development happens
7
+ at https://github.com/ihistand/sqlanvil.
8
+
9
+ This npm package name is reserved while the implementation matures.
10
+ Watch the GitHub repo for the first usable release.
11
+
12
+ License: Apache-2.0
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+ console.error(
3
+ "@sqlanvil/cli is a placeholder. The CLI is not yet published.\n" +
4
+ "Follow progress at https://github.com/ihistand/sqlanvil"
5
+ );
6
+ process.exit(1);
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@sqlanvil/cli",
3
+ "version": "0.0.0",
4
+ "description": "Placeholder for the sqlanvil CLI — active development at https://github.com/ihistand/sqlanvil",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "sqlanvil": "index.js"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/ihistand/sqlanvil"
12
+ },
13
+ "homepage": "https://github.com/ihistand/sqlanvil",
14
+ "author": "Ivan Histand",
15
+ "license": "Apache-2.0",
16
+ "publishConfig": {
17
+ "access": "public"
18
+ }
19
+ }