Skip to content

Commit 26988e5

Browse files
authored
Merge pull request #70 from czeckd/noModName
Remove modname kludge since breaks some builds
2 parents e06cf6e + cb7d9c6 commit 26988e5

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "../../node_modules/ng-packagr/package.schema.json",
33
"name": "angular-dual-listbox",
44
"description": "Angular 4+ component for a dual listbox control.",
5-
"version": "4.6.0",
5+
"version": "4.6.1",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/czeckd/angular-dual-listbox.git"

lib/src/dual-list.component.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,11 @@ import { Component, DoCheck, EventEmitter, Input, IterableDiffers, OnChanges,
33

44
import { BasicList } from './basic-list';
55

6-
// Kludge to make work relative paths with both webpack for distribution builds
7-
// and SystemJS for gh_pages transpiled demo.
8-
var __moduleName:string;
9-
106
export type compareFunction = (a:any, b:any) => number;
117

128
var nextId = 0;
139

1410
@Component({
15-
moduleId: __moduleName,
1611
selector: 'dual-list',
1712
templateUrl: './dual-list.component.html',
1813
styleUrls: [ './dual-list.component.css' ]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-dual-listbox",
33
"description": "Angular 4+ component for a dual listbox control.",
4-
"version": "4.6.0",
4+
"version": "4.6.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/czeckd/angular-dual-listbox.git"

0 commit comments

Comments
 (0)