Skip to content

Commit 70c5dfc

Browse files
authored
Merge pull request #220 from ngx-lib/import-fix
Import fix for utils file.
2 parents eb2f316 + 960c128 commit 70c5dfc

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"homepage": "https://ngx-lib.github.io/multiselect/",
55
"scripts": {
66
"ng": "ng",
7+
"serve": "ng serve",
78
"start": "concurrently \"npm run build\" \"ng serve\" \"npm run multiselect-watch\"",
89
"build-prod": "ng build --prod multiselect && ng build --prod --base-href /multiselect/",
910
"build": "ng build multiselect --prod && ng build --prod",

projects/multiselect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngx-lib/multiselect",
3-
"version": "1.0.10",
3+
"version": "1.0.12",
44
"license": "MIT",
55
"keywords": [
66
"angular",

projects/multiselect/src/lib/utils.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import 'jasmine';
2-
31
import { MultiselectOption } from './models/multiselect-option.model';
42
import { closest, optionsGrouping, mirrorObject, virtualOptionsGroupingFlatten, findUnique, } from './utils';
53

projects/multiselect/src/public_api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
export * from './lib/multiselect.module';
66
export * from './lib/multiselect.component';
77
export * from './lib/pipes/display-selected-value.pipe';
8-
export * from './lib/utils.spec';
8+
export * from './lib/utils';
99
export * from './lib/grouped-options/grouped-options.component';
1010
export * from './lib/options/options.component';
1111
export * from './lib/filter-options/filter-options.component';

0 commit comments

Comments
 (0)