@develia/commons 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  export * from '../src/functions';
2
2
  export * from '../src/cache-dictionary'
3
- export * from '../src/from'
3
+ export {default as from, From} from '../src/from'
4
4
  export * from '../src/action'
5
5
  export * from '../src/equality-comparer'
6
6
  export * from '../src/mapper'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@develia/commons",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "author": {
5
5
  "name": "Antonio Gil Espinosa",
6
6
  "email": "antonio.gil.espinosa@gmail.com",
package/src/grouping.js CHANGED
@@ -1,4 +1,3 @@
1
- // noinspection JSUnusedGlobalSymbols
2
1
  import { From } from "./from";
3
2
  export default class Grouping extends From {
4
3
  get key() {
@@ -1 +1 @@
1
- {"version":3,"file":"grouping.js","sourceRoot":"","sources":["grouping.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAGrC,OAAO,EAAC,IAAI,EAAC,MAAM,QAAQ,CAAC;AAG5B,MAAM,CAAC,OAAO,OAAO,QAAkB,SAAQ,IAAO;IAIlD,IAAW,GAAG;QACV,OAAO,IAAI,CAAC,IAAI,CAAC;IACrB,CAAC;IAED,YAAmB,GAAS,EAAE,MAAgB;QAC1C,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,CAAC;QACpB,IAAI,CAAC,IAAI,GAAG,GAAG,CAAC;IACpB,CAAC;CAGJ"}
1
+ {"version":3,"file":"grouping.js","sourceRoot":"","sources":["grouping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAC,MAAM,QAAQ,CAAC;AAG5B,MAAM,CAAC,OAAO,OAAO,QAAkB,SAAQ,IAAO;IAIlD,IAAW,GAAG;QACV,OAAO,IAAI,CAAC,IAAI,CAAC;IACrB,CAAC;IAED,YAAmB,GAAS,EAAE,MAAgB;QAC1C,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,CAAC;QACpB,IAAI,CAAC,IAAI,GAAG,GAAG,CAAC;IACpB,CAAC;CAGJ"}
package/src/grouping.ts CHANGED
@@ -1,6 +1,3 @@
1
- // noinspection JSUnusedGlobalSymbols
2
-
3
- import {Provider} from "./provider";
4
1
  import {From} from "./from";
5
2
 
6
3