Skip to content

Commit 6b20fcc

Browse files
committed
Fixed: impossible to add new members to destination and return source object when it is null/undefined without actually mapping #11
1 parent f51343b commit 6b20fcc

17 files changed

Lines changed: 204 additions & 24 deletions

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "automapper-ts",
3-
"version": "1.6.3",
3+
"version": "1.6.4",
44
"description": "A convention-based object-object mapper in JavaScript, written in TypeScript. Ported from the original C# AutoMapper library at https://github.com/AutoMapper/AutoMapper.",
55
"keywords": [
66
"automapper",

dist/automapper-classes.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// [bundle remove start]
22
/// <reference path="automapper-interfaces.d.ts" />
33
// [bundle remove end]
4-
// Type definitions for AutoMapper.js 1.6.3
4+
// Type definitions for AutoMapper.js 1.6.4
55
// Project: https://github.com/loedeman/AutoMapper
66
// Definitions by: Bert Loedeman <https://github.com/loedeman>
77
// Definitions: https://github.com/borisyankov/DefinitelyTyped

dist/automapper-declaration.d.ts

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

33
/// <reference path="automapper-classes.d.ts" />
44

5-
// Type definitions for AutoMapper.js 1.6.3
5+
// Type definitions for AutoMapper.js 1.6.4
66
// Project: https://github.com/loedeman/AutoMapper
77
// Definitions by: Bert Loedeman <https://github.com/loedeman>
88
// Definitions: https://github.com/borisyankov/DefinitelyTyped

dist/automapper-interfaces.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// [bundle remove start]
2-
// Type definitions for AutoMapper.js 1.6.3
2+
// Type definitions for AutoMapper.js 1.6.4
33
// Project: https://github.com/loedeman/AutoMapper
44
// Definitions by: Bert Loedeman <https://github.com/loedeman>
55
// Definitions: https://github.com/borisyankov/DefinitelyTyped

dist/automapper.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for AutoMapper.js 1.6.3
1+
// Type definitions for AutoMapper.js 1.6.4
22
// Project: https://github.com/loedeman/AutoMapper
33
// Definitions by: Bert Loedeman <https://github.com/loedeman>
44
// Definitions: https://github.com/borisyankov/DefinitelyTyped

dist/automapper.js

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

dist/automapper.min.js

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

gulp.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
var GulpConfig = (function () {
33

44
function gulpConfig() {
5-
this.libraryVersion = '1.6.3';
5+
this.libraryVersion = '1.6.4';
66

77
// folder definitions
88
this.baseFolder = './';

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "automapper-ts",
3-
"version": "1.6.3",
3+
"version": "1.6.4",
44
"description": "A convention-based object-object mapper in JavaScript, written in TypeScript. Ported from the original C# AutoMapper library at https://github.com/AutoMapper/AutoMapper.",
55
"keywords": [
66
"automapper",

src/js/AutoMapper.js

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)