├── .github └── workflows │ └── test.yml ├── .gitignore ├── README.md ├── bin └── asb ├── dist ├── cli.d.ts ├── cli.js ├── commands │ ├── build.d.ts │ ├── build.js │ ├── fmt.d.ts │ ├── fmt.js │ ├── index.d.ts │ ├── index.js │ ├── init │ │ ├── cmd.d.ts │ │ ├── cmd.js │ │ ├── files │ │ │ ├── asconfigJson.d.ts │ │ │ ├── asconfigJson.js │ │ │ ├── aspecConfig.d.ts │ │ │ ├── aspecConfig.js │ │ │ ├── assembly_files.d.ts │ │ │ ├── assembly_files.js │ │ │ ├── eslintConfig.d.ts │ │ │ ├── eslintConfig.js │ │ │ ├── gitignores.d.ts │ │ │ ├── gitignores.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── indexJs.d.ts │ │ │ ├── indexJs.js │ │ │ ├── packageJson.d.ts │ │ │ ├── packageJson.js │ │ │ ├── test_files.d.ts │ │ │ └── test_files.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── interfaces.d.ts │ │ └── interfaces.js │ ├── run.d.ts │ ├── run.js │ ├── test.d.ts │ └── test.js ├── index.d.ts ├── index.js ├── main.d.ts ├── main.js ├── utils.d.ts └── utils.js ├── index.js ├── package.json ├── src ├── cli.ts ├── commands │ ├── build.ts │ ├── fmt.ts │ ├── index.ts │ ├── init │ │ ├── cmd.ts │ │ ├── files │ │ │ ├── asconfigJson.ts │ │ │ ├── aspecConfig.ts │ │ │ ├── assembly_files.ts │ │ │ ├── eslintConfig.ts │ │ │ ├── gitignores.ts │ │ │ ├── index.ts │ │ │ ├── indexJs.ts │ │ │ ├── packageJson.ts │ │ │ └── test_files.ts │ │ ├── index.ts │ │ └── interfaces.ts │ ├── run.ts │ └── test.ts ├── index.ts ├── main.ts └── utils.ts ├── tests ├── build_test │ ├── README.md │ ├── asconfig.json │ ├── bin │ │ ├── asconfig.json │ │ ├── assembly │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── package.json │ │ └── test.js │ ├── complex │ │ ├── asconfig.json │ │ ├── assembly │ │ │ ├── main.ts │ │ │ └── tsconfig.json │ │ └── package.json │ ├── debug │ │ ├── asconfig.json │ │ ├── assembly │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── expected.json │ │ └── package.json │ ├── extends │ │ ├── asconfig.json │ │ ├── assembly │ │ │ ├── globals.ts │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── nested │ │ │ ├── asconfig.json │ │ │ └── assembly │ │ │ │ ├── index.ts │ │ │ │ └── tsconfig.json │ │ ├── node-resolution │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ └── index.ts │ │ │ └── node_modules │ │ │ │ └── entry-points │ │ │ │ ├── asconfig.json │ │ │ │ └── assembly │ │ │ │ ├── globals.ts │ │ │ │ └── index.ts │ │ └── package.json │ ├── index.ts │ ├── no_asconfig │ │ ├── assembly │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ └── package.json │ ├── override │ │ ├── asconfig.json │ │ ├── assembly │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── expected.json │ │ └── package.json │ ├── override2 │ │ ├── asconfig.json │ │ ├── assembly │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── expected.json │ │ └── package.json │ ├── package.json │ ├── release │ │ ├── asconfig.json │ │ ├── assembly │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── expected.json │ │ └── package.json │ ├── simple │ │ ├── asconfig.json │ │ ├── assembly │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── expected.json │ │ └── package.json │ ├── targets │ │ ├── asconfig.json │ │ ├── assembly │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── expected.json │ │ └── package.json │ ├── test.sh │ ├── wat │ │ ├── asconfig.json │ │ ├── assembly │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── expected.json │ │ └── package.json │ └── yarn.lock ├── test_cli.ts ├── test_cmd_fmt.ts ├── test_cmd_init.ts └── test_cmd_test.ts ├── tsconfig.json └── yarn.lock /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/README.md -------------------------------------------------------------------------------- /bin/asb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/bin/asb -------------------------------------------------------------------------------- /dist/cli.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/cli.d.ts -------------------------------------------------------------------------------- /dist/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/cli.js -------------------------------------------------------------------------------- /dist/commands/build.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/build.d.ts -------------------------------------------------------------------------------- /dist/commands/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/build.js -------------------------------------------------------------------------------- /dist/commands/fmt.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/fmt.d.ts -------------------------------------------------------------------------------- /dist/commands/fmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/fmt.js -------------------------------------------------------------------------------- /dist/commands/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/index.d.ts -------------------------------------------------------------------------------- /dist/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/index.js -------------------------------------------------------------------------------- /dist/commands/init/cmd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/cmd.d.ts -------------------------------------------------------------------------------- /dist/commands/init/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/cmd.js -------------------------------------------------------------------------------- /dist/commands/init/files/asconfigJson.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/asconfigJson.d.ts -------------------------------------------------------------------------------- /dist/commands/init/files/asconfigJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/asconfigJson.js -------------------------------------------------------------------------------- /dist/commands/init/files/aspecConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/aspecConfig.d.ts -------------------------------------------------------------------------------- /dist/commands/init/files/aspecConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/aspecConfig.js -------------------------------------------------------------------------------- /dist/commands/init/files/assembly_files.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/assembly_files.d.ts -------------------------------------------------------------------------------- /dist/commands/init/files/assembly_files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/assembly_files.js -------------------------------------------------------------------------------- /dist/commands/init/files/eslintConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/eslintConfig.d.ts -------------------------------------------------------------------------------- /dist/commands/init/files/eslintConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/eslintConfig.js -------------------------------------------------------------------------------- /dist/commands/init/files/gitignores.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/gitignores.d.ts -------------------------------------------------------------------------------- /dist/commands/init/files/gitignores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/gitignores.js -------------------------------------------------------------------------------- /dist/commands/init/files/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/index.d.ts -------------------------------------------------------------------------------- /dist/commands/init/files/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/index.js -------------------------------------------------------------------------------- /dist/commands/init/files/indexJs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/indexJs.d.ts -------------------------------------------------------------------------------- /dist/commands/init/files/indexJs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/indexJs.js -------------------------------------------------------------------------------- /dist/commands/init/files/packageJson.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/packageJson.d.ts -------------------------------------------------------------------------------- /dist/commands/init/files/packageJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/packageJson.js -------------------------------------------------------------------------------- /dist/commands/init/files/test_files.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/test_files.d.ts -------------------------------------------------------------------------------- /dist/commands/init/files/test_files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/files/test_files.js -------------------------------------------------------------------------------- /dist/commands/init/index.d.ts: -------------------------------------------------------------------------------- 1 | export { InitCmd } from "./cmd"; 2 | -------------------------------------------------------------------------------- /dist/commands/init/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/index.js -------------------------------------------------------------------------------- /dist/commands/init/interfaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/interfaces.d.ts -------------------------------------------------------------------------------- /dist/commands/init/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/init/interfaces.js -------------------------------------------------------------------------------- /dist/commands/run.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/run.d.ts -------------------------------------------------------------------------------- /dist/commands/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/run.js -------------------------------------------------------------------------------- /dist/commands/test.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/test.d.ts -------------------------------------------------------------------------------- /dist/commands/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/commands/test.js -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./cli"; 2 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/main.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/main.js -------------------------------------------------------------------------------- /dist/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/utils.d.ts -------------------------------------------------------------------------------- /dist/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/dist/utils.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./dist") 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/commands/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/build.ts -------------------------------------------------------------------------------- /src/commands/fmt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/fmt.ts -------------------------------------------------------------------------------- /src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/index.ts -------------------------------------------------------------------------------- /src/commands/init/cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/init/cmd.ts -------------------------------------------------------------------------------- /src/commands/init/files/asconfigJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/init/files/asconfigJson.ts -------------------------------------------------------------------------------- /src/commands/init/files/aspecConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/init/files/aspecConfig.ts -------------------------------------------------------------------------------- /src/commands/init/files/assembly_files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/init/files/assembly_files.ts -------------------------------------------------------------------------------- /src/commands/init/files/eslintConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/init/files/eslintConfig.ts -------------------------------------------------------------------------------- /src/commands/init/files/gitignores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/init/files/gitignores.ts -------------------------------------------------------------------------------- /src/commands/init/files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/init/files/index.ts -------------------------------------------------------------------------------- /src/commands/init/files/indexJs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/init/files/indexJs.ts -------------------------------------------------------------------------------- /src/commands/init/files/packageJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/init/files/packageJson.ts -------------------------------------------------------------------------------- /src/commands/init/files/test_files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/init/files/test_files.ts -------------------------------------------------------------------------------- /src/commands/init/index.ts: -------------------------------------------------------------------------------- 1 | export { InitCmd } from "./cmd"; 2 | -------------------------------------------------------------------------------- /src/commands/init/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/init/interfaces.ts -------------------------------------------------------------------------------- /src/commands/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/run.ts -------------------------------------------------------------------------------- /src/commands/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/commands/test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./cli"; 2 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tests/build_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/README.md -------------------------------------------------------------------------------- /tests/build_test/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/asconfig.json -------------------------------------------------------------------------------- /tests/build_test/bin/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/bin/asconfig.json -------------------------------------------------------------------------------- /tests/build_test/bin/assembly/index.ts: -------------------------------------------------------------------------------- 1 | import "wasi"; 2 | 3 | console.log(process.argv.join(" ")); -------------------------------------------------------------------------------- /tests/build_test/bin/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/bin/assembly/tsconfig.json -------------------------------------------------------------------------------- /tests/build_test/bin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/bin/package.json -------------------------------------------------------------------------------- /tests/build_test/bin/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/bin/test.js -------------------------------------------------------------------------------- /tests/build_test/complex/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/complex/asconfig.json -------------------------------------------------------------------------------- /tests/build_test/complex/assembly/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/complex/assembly/main.ts -------------------------------------------------------------------------------- /tests/build_test/complex/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/complex/assembly/tsconfig.json -------------------------------------------------------------------------------- /tests/build_test/complex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/complex/package.json -------------------------------------------------------------------------------- /tests/build_test/debug/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/debug/asconfig.json -------------------------------------------------------------------------------- /tests/build_test/debug/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/debug/assembly/index.ts -------------------------------------------------------------------------------- /tests/build_test/debug/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/debug/assembly/tsconfig.json -------------------------------------------------------------------------------- /tests/build_test/debug/expected.json: -------------------------------------------------------------------------------- 1 | { 2 | "debug": true 3 | } -------------------------------------------------------------------------------- /tests/build_test/debug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/debug/package.json -------------------------------------------------------------------------------- /tests/build_test/extends/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/extends/asconfig.json -------------------------------------------------------------------------------- /tests/build_test/extends/assembly/globals.ts: -------------------------------------------------------------------------------- 1 | @global 2 | const answerToLife = 42; -------------------------------------------------------------------------------- /tests/build_test/extends/assembly/index.ts: -------------------------------------------------------------------------------- 1 | assert(answerToLife == 42); 2 | -------------------------------------------------------------------------------- /tests/build_test/extends/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/extends/assembly/tsconfig.json -------------------------------------------------------------------------------- /tests/build_test/extends/nested/asconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../asconfig.json" 3 | } -------------------------------------------------------------------------------- /tests/build_test/extends/nested/assembly/index.ts: -------------------------------------------------------------------------------- 1 | assert(answerToLife == 42); 2 | -------------------------------------------------------------------------------- /tests/build_test/extends/nested/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/extends/nested/assembly/tsconfig.json -------------------------------------------------------------------------------- /tests/build_test/extends/node-resolution/asconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "entry-points/asconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /tests/build_test/extends/node-resolution/assembly/index.ts: -------------------------------------------------------------------------------- 1 | assert(answerToLife == 42); 2 | -------------------------------------------------------------------------------- /tests/build_test/extends/node-resolution/node_modules/entry-points/asconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "entries": ["assembly/globals.ts"] 3 | } -------------------------------------------------------------------------------- /tests/build_test/extends/node-resolution/node_modules/entry-points/assembly/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/extends/node-resolution/node_modules/entry-points/assembly/globals.ts -------------------------------------------------------------------------------- /tests/build_test/extends/node-resolution/node_modules/entry-points/assembly/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/build_test/extends/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/extends/package.json -------------------------------------------------------------------------------- /tests/build_test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/index.ts -------------------------------------------------------------------------------- /tests/build_test/no_asconfig/assembly/index.ts: -------------------------------------------------------------------------------- 1 | if (ASC_OPTIMIZE_LEVEL == 0) { 2 | assert(false, "Should be optimized"); 3 | } -------------------------------------------------------------------------------- /tests/build_test/no_asconfig/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/no_asconfig/assembly/tsconfig.json -------------------------------------------------------------------------------- /tests/build_test/no_asconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/no_asconfig/package.json -------------------------------------------------------------------------------- /tests/build_test/override/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/override/asconfig.json -------------------------------------------------------------------------------- /tests/build_test/override/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/override/assembly/index.ts -------------------------------------------------------------------------------- /tests/build_test/override/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/override/assembly/tsconfig.json -------------------------------------------------------------------------------- /tests/build_test/override/expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/override/expected.json -------------------------------------------------------------------------------- /tests/build_test/override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/override/package.json -------------------------------------------------------------------------------- /tests/build_test/override2/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/override2/asconfig.json -------------------------------------------------------------------------------- /tests/build_test/override2/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/override2/assembly/index.ts -------------------------------------------------------------------------------- /tests/build_test/override2/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/override2/assembly/tsconfig.json -------------------------------------------------------------------------------- /tests/build_test/override2/expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/override2/expected.json -------------------------------------------------------------------------------- /tests/build_test/override2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/override2/package.json -------------------------------------------------------------------------------- /tests/build_test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/package.json -------------------------------------------------------------------------------- /tests/build_test/release/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/release/asconfig.json -------------------------------------------------------------------------------- /tests/build_test/release/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/release/assembly/index.ts -------------------------------------------------------------------------------- /tests/build_test/release/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/release/assembly/tsconfig.json -------------------------------------------------------------------------------- /tests/build_test/release/expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/release/expected.json -------------------------------------------------------------------------------- /tests/build_test/release/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/release/package.json -------------------------------------------------------------------------------- /tests/build_test/simple/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/simple/asconfig.json -------------------------------------------------------------------------------- /tests/build_test/simple/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/simple/assembly/index.ts -------------------------------------------------------------------------------- /tests/build_test/simple/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/simple/assembly/tsconfig.json -------------------------------------------------------------------------------- /tests/build_test/simple/expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/simple/expected.json -------------------------------------------------------------------------------- /tests/build_test/simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/simple/package.json -------------------------------------------------------------------------------- /tests/build_test/targets/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/targets/asconfig.json -------------------------------------------------------------------------------- /tests/build_test/targets/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/targets/assembly/index.ts -------------------------------------------------------------------------------- /tests/build_test/targets/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/targets/assembly/tsconfig.json -------------------------------------------------------------------------------- /tests/build_test/targets/expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/targets/expected.json -------------------------------------------------------------------------------- /tests/build_test/targets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/targets/package.json -------------------------------------------------------------------------------- /tests/build_test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/test.sh -------------------------------------------------------------------------------- /tests/build_test/wat/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/wat/asconfig.json -------------------------------------------------------------------------------- /tests/build_test/wat/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/wat/assembly/index.ts -------------------------------------------------------------------------------- /tests/build_test/wat/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/wat/assembly/tsconfig.json -------------------------------------------------------------------------------- /tests/build_test/wat/expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/wat/expected.json -------------------------------------------------------------------------------- /tests/build_test/wat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/wat/package.json -------------------------------------------------------------------------------- /tests/build_test/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/build_test/yarn.lock -------------------------------------------------------------------------------- /tests/test_cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/test_cli.ts -------------------------------------------------------------------------------- /tests/test_cmd_fmt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/test_cmd_fmt.ts -------------------------------------------------------------------------------- /tests/test_cmd_init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/test_cmd_init.ts -------------------------------------------------------------------------------- /tests/test_cmd_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tests/test_cmd_test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyScript/asbuild/HEAD/yarn.lock --------------------------------------------------------------------------------