@malloydata/malloy 0.0.9-dev221118183053 → 0.0.9-dev221123175817
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.
- package/README.md +5 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -29,12 +29,12 @@ The `@malloydata/malloy` is basically a compiler that takes a few things as inpu
|
|
|
29
29
|
|
|
30
30
|
In practice, much of this loop is handled by various database plugins:
|
|
31
31
|
|
|
32
|
-
- [DuckDB](https://github.com/
|
|
33
|
-
- [BigQuery](https://github.com/
|
|
34
|
-
- [Postgres](https://github.com/
|
|
32
|
+
- [DuckDB](https://github.com/malloydata/malloy/tree/main/packages/malloy-db-duckdb)
|
|
33
|
+
- [BigQuery](https://github.com/malloydata/malloy/tree/main/packages/malloy-db-bigquery)
|
|
34
|
+
- [Postgres](https://github.com/malloydata/malloy/tree/main/packages/malloy-db-postgres)
|
|
35
35
|
|
|
36
36
|
## Do you have any examples?
|
|
37
37
|
|
|
38
|
-
You can find a (very) simple example of writing a CLI for executing Malloy queries [here](https://github.com/
|
|
38
|
+
You can find a (very) simple example of writing a CLI for executing Malloy queries [here](https://github.com/malloydata/malloy/tree/main/demo/malloy-demo-bq-cli)
|
|
39
39
|
|
|
40
|
-
A more realistic and complex use case - we use these libraries to power our VSCode Extension. Some examples can be found [here](https://github.com/
|
|
40
|
+
A more realistic and complex use case - we use these libraries to power our VSCode Extension. Some examples can be found [here](https://github.com/malloydata/malloy/tree/main/vscode-extension/src/extension/commands)
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/malloy",
|
|
3
|
-
"version": "0.0.9-
|
|
3
|
+
"version": "0.0.9-dev221123175817",
|
|
4
4
|
"license": "GPL-2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
-
"homepage": "https://github.com/
|
|
7
|
+
"homepage": "https://github.com/malloydata/malloy#readme",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/
|
|
10
|
+
"url": "https://github.com/malloydata/malloy"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
13
|
"test": "jest --config=../../jest.config.js",
|