Skip to content

Commit

Permalink
Merge pull request #70 from czeckd/noModName
Browse files Browse the repository at this point in the history
Remove modname kludge since breaks some builds
  • Loading branch information
czeckd authored Feb 1, 2018
2 parents e06cf6e + cb7d9c6 commit 26988e5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "../../node_modules/ng-packagr/package.schema.json",
"name": "angular-dual-listbox",
"description": "Angular 4+ component for a dual listbox control.",
"version": "4.6.0",
"version": "4.6.1",
"repository": {
"type": "git",
"url": "https://github.com/czeckd/angular-dual-listbox.git"
Expand Down
5 changes: 0 additions & 5 deletions lib/src/dual-list.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,11 @@ import { Component, DoCheck, EventEmitter, Input, IterableDiffers, OnChanges,

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

// Kludge to make work relative paths with both webpack for distribution builds
// and SystemJS for gh_pages transpiled demo.
var __moduleName:string;

export type compareFunction = (a:any, b:any) => number;

var nextId = 0;

@Component({
moduleId: __moduleName,
selector: 'dual-list',
templateUrl: './dual-list.component.html',
styleUrls: [ './dual-list.component.css' ]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-dual-listbox",
"description": "Angular 4+ component for a dual listbox control.",
"version": "4.6.0",
"version": "4.6.1",
"repository": {
"type": "git",
"url": "https://github.com/czeckd/angular-dual-listbox.git"
Expand Down

0 comments on commit 26988e5

Please sign in to comment.