├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── Dockerfile ├── LICENSE ├── README.md ├── definitions ├── marts │ └── test.sqlx ├── table0.sqlx ├── table1.sqlx └── table2.sqlx ├── docker-compose.yml ├── jest.config.js ├── package.json ├── src ├── Sqlx.ts ├── bigquery.ts ├── dataform.ts ├── main.ts ├── refactor.ts ├── types.ts └── valid.ts ├── test ├── Sqlx.test.ts ├── dataform.test.ts ├── refactor.test.ts └── valid.test.ts └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/.npmignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/README.md -------------------------------------------------------------------------------- /definitions/marts/test.sqlx: -------------------------------------------------------------------------------- 1 | select 1 from ${ref('table1')} -------------------------------------------------------------------------------- /definitions/table0.sqlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/definitions/table0.sqlx -------------------------------------------------------------------------------- /definitions/table1.sqlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/definitions/table1.sqlx -------------------------------------------------------------------------------- /definitions/table2.sqlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/definitions/table2.sqlx -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/package.json -------------------------------------------------------------------------------- /src/Sqlx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/src/Sqlx.ts -------------------------------------------------------------------------------- /src/bigquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/src/bigquery.ts -------------------------------------------------------------------------------- /src/dataform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/src/dataform.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/refactor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/src/refactor.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/valid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/src/valid.ts -------------------------------------------------------------------------------- /test/Sqlx.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/test/Sqlx.test.ts -------------------------------------------------------------------------------- /test/dataform.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/test/dataform.test.ts -------------------------------------------------------------------------------- /test/refactor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/test/refactor.test.ts -------------------------------------------------------------------------------- /test/valid.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/test/valid.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiracky16/dataform-osmosis/HEAD/tsconfig.json --------------------------------------------------------------------------------