├── .editorconfig ├── .gitignore ├── .huskyrc ├── .lintstagedrc ├── .npmrc ├── CHANGELOG.md ├── Dockerfile.build-wasm ├── LICENSE ├── README.md ├── cue.mod └── pkg │ └── example.com │ └── test │ └── test.cue ├── karma.conf.js ├── lib ├── cue.wasm ├── index.ts ├── wasm_exec.d.ts └── wasm_exec.js ├── package.json ├── repo.yml ├── tests ├── chai.ts ├── fixtures │ ├── abstract.cue │ ├── concrete.cue │ ├── import.cue │ └── inject.cue └── main.spec.ts ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.huskyrc: -------------------------------------------------------------------------------- 1 | { 2 | "hooks": { 3 | "pre-commit": "lint-staged" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile.build-wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/Dockerfile.build-wasm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/README.md -------------------------------------------------------------------------------- /cue.mod/pkg/example.com/test/test.cue: -------------------------------------------------------------------------------- 1 | package test 2 | 3 | message: "I was imported!" 4 | -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/karma.conf.js -------------------------------------------------------------------------------- /lib/cue.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/lib/cue.wasm -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/wasm_exec.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/lib/wasm_exec.d.ts -------------------------------------------------------------------------------- /lib/wasm_exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/lib/wasm_exec.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/package.json -------------------------------------------------------------------------------- /repo.yml: -------------------------------------------------------------------------------- 1 | type: node 2 | -------------------------------------------------------------------------------- /tests/chai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/tests/chai.ts -------------------------------------------------------------------------------- /tests/fixtures/abstract.cue: -------------------------------------------------------------------------------- 1 | hello: string 2 | -------------------------------------------------------------------------------- /tests/fixtures/concrete.cue: -------------------------------------------------------------------------------- 1 | hello: "world" 2 | -------------------------------------------------------------------------------- /tests/fixtures/import.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/tests/fixtures/import.cue -------------------------------------------------------------------------------- /tests/fixtures/inject.cue: -------------------------------------------------------------------------------- 1 | hello: string @tag(hello) -------------------------------------------------------------------------------- /tests/main.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/tests/main.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/product-os/cuelang-js/HEAD/tslint.json --------------------------------------------------------------------------------