as-test 0.1.3 → 0.1.5
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/.github/workflows/{nodejs.yml → as-test.yml} +10 -9
- package/.prettierrc +3 -0
- package/CHANGELOG.md +4 -1
- package/README.md +18 -65
- package/as-test.config.json +22 -0
- package/asconfig.json +30 -33
- package/assembly/__tests__/example.spec.ts +70 -0
- package/assembly/coverage.ts +15 -15
- package/assembly/index.ts +197 -135
- package/assembly/reporters/tap.ts +30 -0
- package/assembly/src/expectation.ts +302 -277
- package/assembly/src/group.ts +33 -33
- package/assembly/src/node.ts +7 -7
- package/assembly/test.ts +43 -46
- package/assembly/tsconfig.json +96 -98
- package/assembly/util.ts +90 -87
- package/bin/build.js +119 -0
- package/bin/index.js +159 -0
- package/bin/init.js +40 -0
- package/bin/package.json +3 -0
- package/bin/run.js +53 -0
- package/bin/types.js +41 -0
- package/bin/util.js +23 -0
- package/cli/build.ts +154 -0
- package/cli/index.ts +201 -0
- package/cli/init.ts +47 -0
- package/cli/run.ts +68 -0
- package/cli/tsconfig.json +8 -0
- package/cli/types.ts +34 -0
- package/cli/util.ts +30 -0
- package/index.ts +1 -1
- package/jest.test.js +44 -5
- package/package.json +19 -16
- package/tests/test.tap +14 -0
- package/transform/lib/index.js +391 -397
- package/transform/package.json +4 -4
- package/transform/src/index.ts +474 -506
- package/transform/tsconfig.json +2 -2
- package/assembly/example.spec.ts +0 -5
- package/src/cli.ts +0 -0
package/transform/tsconfig.json
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
|
45
45
|
// "typeRoots": [], /* List of folders to include type definitions from. */
|
|
46
46
|
// "types": [], /* Type declaration files to be included in compilation. */
|
|
47
|
-
"allowSyntheticDefaultImports": true
|
|
47
|
+
"allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
|
|
48
48
|
"esModuleInterop": false /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
|
|
49
49
|
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
|
|
50
50
|
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
|
@@ -60,4 +60,4 @@
|
|
|
60
60
|
"skipLibCheck": true /* Skip type checking of declaration files. */,
|
|
61
61
|
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
|
|
62
62
|
}
|
|
63
|
-
}
|
|
63
|
+
}
|
package/assembly/example.spec.ts
DELETED
package/src/cli.ts
DELETED
|
File without changes
|