Skip to content

Commit 4016c00

Browse files
committed
fix: snapshots
1 parent 7619a4b commit 4016c00

19 files changed

Lines changed: 37 additions & 54 deletions

File tree

HISTORY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
`ts-loader` was started by [James Brantly](http://www.jbrantly.com/) back in January 2015. He created the initial codebase, wrote the comparison testpack and merrily maintained it until it reached v0.8.2.
44

5-
At that point [John Reilly](https://blog.johnnyreilly.com/) started maintaining ts-loader. [On October 16th 2016 to be exact](https://twitter.com/jbrantly/status/785931975064444928). The full story of how that came to be can be read here: https://blog.johnnyreilly.com/2016/11/but-you-cant-die-i-love-you-ts-loader.html
5+
At that point [John Reilly](https://johnnyreilly.com/) started maintaining ts-loader. [On October 16th 2016 to be exact](https://twitter.com/jbrantly/status/785931975064444928). The full story of how that came to be can be read here: https://johnnyreilly.com/but-you-cant-die-i-love-you-ts-loader
66

77
Since that time, John (who wrote this and finds it peculiar to refer to himself in the third person) has continued maintaining ts-loader. He appreciates any and all people that contribute. Who knows, maybe one day the mantle will be passed on again and someone else will step up and take ts-loader forwards. Who knows? It could be you ;-)

RELEASING.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/bundle.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
\****************/
1717
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1818

19-
eval("{\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nconst lib_1 = __webpack_require__(/*! ./lib */ \"./lib/out/index.js\");\nconsole.log(lib_1.lib.one, lib_1.lib.two, lib_1.lib.three);\n\n\n//# sourceURL=webpack:///./app.ts?\n}");
19+
eval("{\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nconst lib_1 = __webpack_require__(/*! ./lib */ \"./lib/out/index.js\");\nconsole.log(lib_1.lib.one, lib_1.lib.two, lib_1.lib.three, lib_1.lib.four); // consume new number\n\n\n//# sourceURL=webpack:///./app.ts?\n}");
2020

2121
/***/ }),
2222

@@ -26,7 +26,7 @@ eval("{\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\ncon
2626
\**************************/
2727
/***/ ((__unused_webpack_module, exports) => {
2828

29-
eval("{\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.lib = void 0;\nexports.lib = {\n one: 1,\n two: 2,\n three: 3\n};\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./lib/out/index.js?\n}");
29+
eval("{\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.lib = void 0;\nexports.lib = {\n one: 1,\n two: 2,\n three: 3,\n four: 4, // Add new number\n five: 5,\n};\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./lib/out/index.js?\n}");
3030

3131
/***/ })
3232

test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/lib/out/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ export declare const lib: {
22
one: number;
33
two: number;
44
three: number;
5+
four: number;
6+
five: number;
57
};

test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/lib/out/index.js

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

test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/lib/out/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)