Skip to content

Commit efef1d4

Browse files
authored
Rework bundler path mapping support (#400), fixes #398
* Revive Ye Olde Integration Tests #398 * Update dependencies * Rework path mappings, fixes #398 * Revive even more integration tests, #398 #400 * Add documentation
1 parent dba5d9a commit efef1d4

File tree

119 files changed

+8360
-351
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+8360
-351
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,14 @@ npm install --save-dev karma-typescript
2929
| [`karma-typescript-es6-transform`](/packages/karma-typescript-es6-transform) | [![Npm Version](https://img.shields.io/npm/v/karma-typescript-es6-transform.svg)](https://www.npmjs.com/package/karma-typescript-es6-transform) | [![Dependencies Status](https://david-dm.org/monounity/karma-typescript/status.svg?path=packages/karma-typescript-es6-transform)](https://david-dm.org/monounity/karma-typescript?path=packages/karma-typescript-es6-transform) |
3030
| [`karma-typescript-postcss-transform`](/packages/karma-typescript-postcss-transform) | [![Npm Version](https://img.shields.io/npm/v/karma-typescript-postcss-transform.svg)](https://www.npmjs.com/package/karma-typescript-postcss-transform) | [![Dependencies Status](https://david-dm.org/monounity/karma-typescript.svg?path=packages/karma-typescript-postcss-transform)](https://david-dm.org/monounity/karma-typescript?path=packages/karma-typescript-postcss-transform) |
3131

32-
3332
## Contributors
3433

3534
<a href="https://github.com/monounity/karma-typescript/graphs/contributors"><img src="https://opencollective.com/karma-typescript/contributors.svg?width=890&button=false" /></a>
3635

36+
## Contribute
37+
38+
[Contributing guidelines](https://github.com/monounity/karma-typescript/wiki/Contributing)
39+
3740
## Backers
3841

3942
Support us with a monthly donation and help us continue our activities. [[Become a backer](https://opencollective.com/karma-typescript#backer)]

ci-install.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ const projects = [
1212
"examples/angular2",
1313
"examples/typescript-1.6.2",
1414
"examples/typescript-1.8.10",
15-
"examples/typescript-latest"
15+
"examples/typescript-latest",
16+
"tests/integration-latest"
1617
];
1718

1819
for (const package of packages) {
@@ -23,3 +24,7 @@ for (const package of packages) {
2324
fse.copyFileSync(`packages/${package}/package.json`, `${project}/node_modules/${package}/package.json`);
2425
}
2526
}
27+
28+
fse.copySync("tests/integration-latest/karma-typescript-test-module/", "tests/integration-latest/node_modules/karma-typescript-test-module/");
29+
fse.copySync("tests/integration-latest/karma-typescript-test-module-commonjs-a/", "tests/integration-latest/node_modules/karma-typescript-test-module-commonjs-a/");
30+
fse.copySync("tests/integration-latest/karma-typescript-test-module-commonjs-b/", "tests/integration-latest/node_modules/karma-typescript-test-module-commonjs-b/");

examples/angular2/package-lock.json

Lines changed: 35 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/typescript-1.6.2/package-lock.json

Lines changed: 32 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)