@rws-framework/db 2.4.6 → 3.0.0

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.
Files changed (123) hide show
  1. package/.bin/add-v.sh +9 -9
  2. package/.bin/emerge.sh +10 -10
  3. package/.eslintrc.json +53 -53
  4. package/README.md +404 -404
  5. package/dist/decorators/IdType.d.ts +8 -0
  6. package/dist/decorators/IdType.js +10 -0
  7. package/dist/decorators/InverseRelation.d.ts +2 -2
  8. package/dist/decorators/InverseRelation.js +5 -1
  9. package/dist/decorators/InverseTimeSeries.d.ts +0 -0
  10. package/dist/decorators/InverseTimeSeries.js +0 -0
  11. package/dist/decorators/RWSCollection.d.ts +7 -0
  12. package/dist/decorators/RWSCollection.js +6 -0
  13. package/dist/decorators/Relation.d.ts +8 -6
  14. package/dist/decorators/Relation.js +8 -1
  15. package/dist/decorators/TrackType.d.ts +2 -14
  16. package/dist/decorators/TrackType.js +7 -0
  17. package/dist/decorators/TypeFunctions.d.ts +44 -0
  18. package/dist/decorators/TypeFunctions.js +174 -0
  19. package/dist/decorators/index.d.ts +4 -2
  20. package/dist/decorators/index.js +3 -1
  21. package/dist/helper/DbHelper.d.ts +76 -5
  22. package/dist/helper/DbHelper.js +93 -154
  23. package/dist/helper/FieldsHelper.d.ts +0 -0
  24. package/dist/helper/FieldsHelper.js +0 -0
  25. package/dist/helper/db/index.d.ts +9 -0
  26. package/dist/helper/db/index.js +18 -0
  27. package/dist/helper/db/relation-manager.d.ts +45 -0
  28. package/dist/helper/db/relation-manager.js +105 -0
  29. package/dist/helper/db/schema-generator.d.ts +37 -0
  30. package/dist/helper/db/schema-generator.js +243 -0
  31. package/dist/helper/db/type-converter.d.ts +22 -0
  32. package/dist/helper/db/type-converter.js +106 -0
  33. package/dist/helper/db/utils.d.ts +24 -0
  34. package/dist/helper/db/utils.js +99 -0
  35. package/dist/index.d.ts +3 -3
  36. package/dist/index.js +2 -1
  37. package/dist/models/TimeSeriesModel.d.ts +7 -7
  38. package/dist/models/TimeSeriesModel.js +33 -33
  39. package/dist/models/_model.d.ts +2 -2
  40. package/dist/models/_model.js +0 -0
  41. package/dist/models/core/RWSModel.d.ts +4 -1
  42. package/dist/models/core/RWSModel.js +6 -4
  43. package/dist/models/core/TimeSeriesModel.d.ts +0 -0
  44. package/dist/models/core/TimeSeriesModel.js +0 -0
  45. package/dist/models/index.d.ts +2 -2
  46. package/dist/models/index.js +0 -0
  47. package/dist/models/interfaces/IDbOpts.d.ts +17 -0
  48. package/dist/models/interfaces/IDbOpts.js +2 -0
  49. package/dist/models/interfaces/IIdOpts.d.ts +0 -0
  50. package/dist/models/interfaces/IIdOpts.js +1 -0
  51. package/dist/models/interfaces/IIdTypeOpts.d.ts +3 -0
  52. package/dist/models/interfaces/IIdTypeOpts.js +2 -0
  53. package/dist/models/interfaces/IModel.d.ts +0 -0
  54. package/dist/models/interfaces/IModel.js +0 -0
  55. package/dist/models/interfaces/IRWSModelServices.d.ts +0 -0
  56. package/dist/models/interfaces/IRWSModelServices.js +0 -0
  57. package/dist/models/interfaces/ITrackerOpts.d.ts +12 -0
  58. package/dist/models/interfaces/ITrackerOpts.js +2 -0
  59. package/dist/models/interfaces/OpModelType.d.ts +3 -0
  60. package/dist/models/interfaces/OpModelType.js +0 -0
  61. package/dist/models/types/RelationTypes.d.ts +0 -0
  62. package/dist/models/types/RelationTypes.js +0 -0
  63. package/dist/models/utils/ModelUtils.d.ts +0 -0
  64. package/dist/models/utils/ModelUtils.js +0 -0
  65. package/dist/models/utils/PaginationUtils.d.ts +0 -0
  66. package/dist/models/utils/PaginationUtils.js +0 -0
  67. package/dist/models/utils/RelationUtils.d.ts +1 -1
  68. package/dist/models/utils/RelationUtils.js +2 -2
  69. package/dist/models/utils/TimeSeriesUtils.d.ts +0 -0
  70. package/dist/models/utils/TimeSeriesUtils.js +0 -0
  71. package/dist/services/DBService.d.ts +0 -0
  72. package/dist/services/DBService.js +0 -0
  73. package/dist/types/DbConfigHandler.d.ts +1 -1
  74. package/dist/types/DbConfigHandler.js +0 -0
  75. package/dist/types/FindParams.d.ts +0 -0
  76. package/dist/types/FindParams.js +0 -0
  77. package/dist/types/IRWSModel.d.ts +1 -1
  78. package/dist/types/IRWSModel.js +0 -0
  79. package/dist/types/ITimeSeries.d.ts +0 -0
  80. package/dist/types/ITimeSeries.js +0 -0
  81. package/exec/console.js +110 -110
  82. package/exec/db.rws.webpack.config.js +168 -168
  83. package/exec/src/cli.ts +73 -75
  84. package/exec/tsconfig.json +32 -32
  85. package/exec/webpackFilters.js +17 -17
  86. package/package.json +36 -36
  87. package/src/decorators/IdType.ts +17 -0
  88. package/src/decorators/InverseRelation.ts +41 -37
  89. package/src/decorators/InverseTimeSeries.ts +21 -21
  90. package/src/decorators/RWSCollection.ts +45 -27
  91. package/src/decorators/Relation.ts +61 -48
  92. package/src/decorators/TrackType.ts +65 -69
  93. package/src/decorators/index.ts +16 -8
  94. package/src/empty.js +0 -0
  95. package/src/helper/DbHelper.ts +133 -223
  96. package/src/helper/FieldsHelper.ts +34 -34
  97. package/src/helper/db/index.ts +10 -0
  98. package/src/helper/db/relation-manager.ts +119 -0
  99. package/src/helper/db/schema-generator.ts +302 -0
  100. package/src/helper/db/type-converter.ts +119 -0
  101. package/src/helper/db/utils.ts +120 -0
  102. package/src/index.ts +47 -38
  103. package/src/models/_model.ts +29 -29
  104. package/src/models/core/RWSModel.ts +523 -520
  105. package/src/models/core/TimeSeriesModel.ts +19 -19
  106. package/src/models/index.ts +20 -20
  107. package/src/models/interfaces/IDbOpts.ts +17 -0
  108. package/src/models/interfaces/IIdTypeOpts.ts +4 -0
  109. package/src/models/interfaces/IModel.ts +12 -12
  110. package/src/models/interfaces/IRWSModelServices.ts +7 -7
  111. package/src/models/interfaces/ITrackerOpts.ts +13 -0
  112. package/src/models/interfaces/OpModelType.ts +52 -49
  113. package/src/models/types/RelationTypes.ts +25 -25
  114. package/src/models/utils/ModelUtils.ts +65 -65
  115. package/src/models/utils/PaginationUtils.ts +42 -42
  116. package/src/models/utils/RelationUtils.ts +76 -76
  117. package/src/models/utils/TimeSeriesUtils.ts +38 -38
  118. package/src/services/DBService.ts +277 -277
  119. package/src/types/DbConfigHandler.ts +17 -17
  120. package/src/types/FindParams.ts +13 -13
  121. package/src/types/IRWSModel.ts +2 -2
  122. package/src/types/ITimeSeries.ts +5 -5
  123. package/tsconfig.json +22 -22
@@ -0,0 +1,17 @@
1
+ import 'reflect-metadata';
2
+ import { ITrackerOpts } from '../models/interfaces/ITrackerOpts';
3
+ import { IIdTypeOpts } from '../models/interfaces/IIdTypeOpts';
4
+
5
+ export interface IIdMetaOpts extends IIdTypeOpts {
6
+ type: any,
7
+ }
8
+
9
+ function IdType(type: any, opts: IIdTypeOpts | null = null, tags: string[] = []) {
10
+ const metaOpts: IIdMetaOpts = { type, dbOptions: opts && opts.dbOptions ? opts.dbOptions : null };
11
+ return function(target: any, key: string) {
12
+ Reflect.defineMetadata(`IdType:${key}`, metaOpts, target);
13
+ };
14
+ }
15
+
16
+ export default IdType;
17
+ export { IIdTypeOpts};
@@ -1,37 +1,41 @@
1
- import 'reflect-metadata';
2
- import { RWSModel, OpModelType } from '../models/_model';
3
-
4
- interface InverseRelationOpts{
5
- key: string,
6
- inversionModel: OpModelType<RWSModel<any>>,
7
- foreignKey: string,
8
- singular?: boolean
9
- relationName?: string
10
- }
11
-
12
- function InverseRelation(inversionModel: () => OpModelType<RWSModel<any>>, sourceModel: () => OpModelType<RWSModel<any>>, relationOptions: Partial<InverseRelationOpts> = null) {
13
- return function(target: any, key: string) {
14
- const metadataPromise = Promise.resolve().then(() => {
15
- const model = inversionModel();
16
- const source = sourceModel();
17
-
18
- const metaOpts: InverseRelationOpts = {
19
- ...relationOptions,
20
- key,
21
- inversionModel: model,
22
- foreignKey: relationOptions && relationOptions.foreignKey ? relationOptions.foreignKey : `${source._collection}_id`
23
- };
24
-
25
- return metaOpts;
26
- });
27
-
28
- // Store both the promise and the key information
29
- Reflect.defineMetadata(`InverseRelation:${key}`, {
30
- promise: metadataPromise,
31
- key
32
- }, target);
33
- };
34
- }
35
-
36
- export default InverseRelation;
37
- export {InverseRelationOpts};
1
+ import 'reflect-metadata';
2
+ import { RWSModel, OpModelType } from '../models/_model';
3
+
4
+ export interface InverseRelationOpts {
5
+ key: string,
6
+ inversionModel: OpModelType<RWSModel<any>>
7
+ foreignKey: string
8
+ singular?: boolean
9
+ relationName?: string
10
+ mappingName?: string
11
+ }
12
+
13
+ function InverseRelation(inversionModel: () => OpModelType<RWSModel<any>>, sourceModel: () => OpModelType<RWSModel<any>>, relationOptions: Partial<InverseRelationOpts> = null) {
14
+ return function (target: any, key: string) {
15
+ const metadataPromise = Promise.resolve().then(() => {
16
+ const model = inversionModel();
17
+ const source = sourceModel();
18
+
19
+ const metaOpts: InverseRelationOpts = {
20
+ ...relationOptions,
21
+ key,
22
+ inversionModel: model,
23
+ foreignKey: relationOptions && relationOptions.foreignKey ? relationOptions.foreignKey : `${source._collection}_id`,
24
+ // Generate a unique relation name if one is not provided
25
+ relationName: relationOptions && relationOptions.relationName ?
26
+ relationOptions.relationName.toLowerCase() :
27
+ `${model._collection}_${key}_${source._collection}`.toLowerCase()
28
+ };
29
+
30
+ return metaOpts;
31
+ });
32
+
33
+ // Store both the promise and the key information
34
+ Reflect.defineMetadata(`InverseRelation:${key}`, {
35
+ promise: metadataPromise,
36
+ key
37
+ }, target);
38
+ };
39
+ }
40
+
41
+ export default InverseRelation;
@@ -1,22 +1,22 @@
1
- import 'reflect-metadata';
2
-
3
- interface InverseTimeSeriesOpts{
4
- timeSeriesModel: string
5
- hydrationField: string
6
- }
7
-
8
- function InverseTimeSeries(timeSeriesModel: string, hydrationField: string) {
9
-
10
- const metaOpts: InverseTimeSeriesOpts = {
11
- timeSeriesModel: timeSeriesModel,
12
- hydrationField: hydrationField
13
- };
14
-
15
-
16
- return function(target: any, key: string) {
17
- Reflect.defineMetadata(`InverseTimeSeries:${key}`, metaOpts, target);
18
- };
19
- }
20
-
21
- export default InverseTimeSeries;
1
+ import 'reflect-metadata';
2
+
3
+ interface InverseTimeSeriesOpts{
4
+ timeSeriesModel: string
5
+ hydrationField: string
6
+ }
7
+
8
+ function InverseTimeSeries(timeSeriesModel: string, hydrationField: string) {
9
+
10
+ const metaOpts: InverseTimeSeriesOpts = {
11
+ timeSeriesModel: timeSeriesModel,
12
+ hydrationField: hydrationField
13
+ };
14
+
15
+
16
+ return function(target: any, key: string) {
17
+ Reflect.defineMetadata(`InverseTimeSeries:${key}`, metaOpts, target);
18
+ };
19
+ }
20
+
21
+ export default InverseTimeSeries;
22
22
  export {InverseTimeSeriesOpts};
@@ -1,28 +1,46 @@
1
- import { OpModelType } from "../models/_model";
2
-
3
- export interface IRWSCollectionOpts {
4
- relations?: {
5
- [key: string]: boolean
6
- },
7
- ignored_keys?: string[]
8
- }
9
-
10
- export interface IRWSCollectionMeta {
11
- collectionName: string,
12
- options?: IRWSCollectionOpts
13
- }
14
-
15
-
16
- export function RWSCollection(collectionName: string, options?: IRWSCollectionOpts) {
17
- const metaOpts: IRWSCollectionMeta = { collectionName, options };
18
- return function(target: OpModelType<any>) {
19
- target._collection = collectionName;
20
- if(options && options.relations){
21
- target._RELATIONS = options.relations;
22
- }
23
- if(options && options.ignored_keys){
24
- target._CUT_KEYS = options.ignored_keys;
25
- }
26
- Reflect.defineMetadata(`RWSCollection`, metaOpts, target);
27
- };
1
+ import { OpModelType } from "../models/_model";
2
+
3
+
4
+ //@todo Replace with source
5
+ export interface ISuperTagData {
6
+ tagType: string,
7
+ fields: string[],
8
+ map: string
9
+ }
10
+
11
+ export interface IRWSCollectionOpts {
12
+ relations?: {
13
+ [key: string]: boolean
14
+ },
15
+ ignored_keys?: string[],
16
+ noId?: boolean,
17
+ superTags?: ISuperTagData[]
18
+ }
19
+
20
+ export interface IRWSCollectionMeta {
21
+ collectionName: string,
22
+ options?: IRWSCollectionOpts
23
+ }
24
+
25
+ export function RWSCollection(collectionName: string, options?: IRWSCollectionOpts) {
26
+ const metaOpts: IRWSCollectionMeta = { collectionName, options };
27
+ return function(target: OpModelType<any>) {
28
+ target._collection = collectionName;
29
+ if(options && options.relations){
30
+ target._RELATIONS = options.relations;
31
+ }
32
+ if(options && options.ignored_keys){
33
+ target._CUT_KEYS = options.ignored_keys;
34
+ }
35
+
36
+ if(options && options.noId){
37
+ target._NO_ID = options.noId;
38
+ }
39
+
40
+ if(options && options.superTags && options.superTags.length){
41
+ target._SUPER_TAGS = options.superTags;
42
+ }
43
+
44
+ Reflect.defineMetadata(`RWSCollection`, metaOpts, target);
45
+ };
28
46
  }
@@ -1,48 +1,61 @@
1
- import 'reflect-metadata';
2
- import { RWSModel, OpModelType } from '../models/_model';
3
-
4
- type CascadingSetup = 'Cascade' | 'Restrict' | 'NoAction' | 'SetNull';
5
-
6
- interface IRelationOpts {
7
- required?: boolean
8
- key: string
9
- relationField: string
10
- relatedToField?: string
11
- relatedTo: OpModelType<RWSModel<any>>
12
- many?: boolean
13
- embed?: boolean
14
- cascade: {
15
- onDelete: CascadingSetup,
16
- onUpdate: CascadingSetup
17
- }
18
- }
19
-
20
- const _DEFAULTS: Partial<IRelationOpts> = { required: false, many: false, embed: false, cascade: { onDelete: 'SetNull', onUpdate: 'Cascade' }};
21
-
22
- function Relation(theModel: () => OpModelType<RWSModel<any>>, relationOptions: Partial<IRelationOpts> = _DEFAULTS) {
23
- return function(target: any, key: string) {
24
- // Store the promise in metadata immediately
25
- const metadataPromise = Promise.resolve().then(() => {
26
- const relatedTo = theModel();
27
-
28
- const metaOpts: IRelationOpts = {
29
- ...relationOptions,
30
- cascade: relationOptions.cascade || _DEFAULTS.cascade,
31
- relatedTo,
32
- relationField: relationOptions.relationField ? relationOptions.relationField : relatedTo._collection + '_id',
33
- key
34
- };
35
- return metaOpts;
36
- });
37
-
38
- // Store both the promise and the key information
39
- Reflect.defineMetadata(`Relation:${key}`, {
40
- promise: metadataPromise,
41
- key
42
- }, target);
43
- };
44
- }
45
-
46
-
47
- export default Relation;
48
- export {IRelationOpts};
1
+ import 'reflect-metadata';
2
+ import { RWSModel, OpModelType } from '../models/_model';
3
+
4
+ export type CascadingSetup = 'Cascade' | 'Restrict' | 'NoAction' | 'SetNull';
5
+
6
+ export interface IRelationOpts {
7
+ required?: boolean
8
+ key: string
9
+ relationField: string
10
+ relatedToField?: string
11
+ mappingName?: string
12
+ relatedTo: OpModelType<RWSModel<any>>
13
+ many?: boolean
14
+ embed?: boolean
15
+ useUuid?: boolean
16
+ relationName?: string
17
+ cascade?: {
18
+ onDelete?: CascadingSetup,
19
+ onUpdate?: CascadingSetup
20
+ }
21
+ }
22
+
23
+ const _DEFAULTS: Partial<IRelationOpts> = { required: false, many: false, embed: false, cascade: { onDelete: 'SetNull', onUpdate: 'Cascade' }};
24
+
25
+ function Relation(theModel: () => OpModelType<RWSModel<any>>, relationOptions: Partial<IRelationOpts> = _DEFAULTS) {
26
+ return function(target: any, key: string) {
27
+ // Store the promise in metadata immediately
28
+
29
+ const metadataPromise = Promise.resolve().then(() => {
30
+ const relatedTo = theModel();
31
+
32
+ const metaOpts: IRelationOpts = {
33
+ ...relationOptions,
34
+ cascade: relationOptions.cascade || _DEFAULTS.cascade,
35
+ relatedTo,
36
+ relationField: relationOptions.relationField ? relationOptions.relationField : relatedTo._collection + '_id',
37
+ key,
38
+ // Generate a unique relation name if one is not provided
39
+ relationName: relationOptions.relationName ?
40
+ relationOptions.relationName.toLowerCase() :
41
+ `${target.constructor.name.toLowerCase()}_${key}_${relatedTo._collection.toLowerCase()}`
42
+ };
43
+
44
+ if(relationOptions.required){
45
+ metaOpts.cascade.onDelete = 'Restrict';
46
+ }
47
+
48
+ return metaOpts;
49
+ });
50
+
51
+ // Store both the promise and the key information
52
+ Reflect.defineMetadata(`Relation:${key}`, {
53
+ promise: metadataPromise,
54
+ key
55
+ }, target);
56
+ };
57
+ }
58
+
59
+
60
+ export default Relation;
61
+
@@ -1,69 +1,65 @@
1
- import 'reflect-metadata';
2
- import { OpModelType } from '../models/interfaces/OpModelType';
3
-
4
- interface ITrackerOpts{
5
- required?: boolean,
6
- isArray?: boolean,
7
- relationField?: string,
8
- relatedToField?: string,
9
- relatedTo?: OpModelType<any>,
10
- inversionModel?: OpModelType<any>,
11
- relationName?: string
12
- }
13
-
14
- interface IMetaOpts extends ITrackerOpts{
15
- type: any,
16
- tags: string[],
17
- required: boolean,
18
- isArray: boolean
19
- }
20
-
21
- function TrackType(type: any, opts: ITrackerOpts | null = null, tags: string[] = []) {
22
- if(!opts){
23
- opts = {
24
- required: false,
25
- isArray: false
26
- };
27
- }
28
-
29
- if(!opts?.required){
30
- opts.required = false;
31
- }
32
-
33
- if(!opts?.isArray){
34
- opts.isArray = false;
35
- }
36
-
37
- const required = opts.required;
38
- const isArray = opts.isArray;
39
-
40
- const metaOpts: IMetaOpts = {type, tags, required, isArray};
41
-
42
- if(opts.relatedToField && opts.relatedTo){
43
- metaOpts.relatedToField = opts.relatedToField;
44
- metaOpts.relatedTo = opts.relatedTo;
45
-
46
- if(!opts.relationField){
47
- metaOpts.relationField = opts.relatedTo + '_id';
48
- } else{
49
- metaOpts.relationField = opts.relationField;
50
- }
51
- }
52
-
53
- if(opts.inversionModel){
54
- metaOpts.inversionModel = opts.inversionModel;
55
- }
56
-
57
- //const resolvedType = typeof type === 'function' ? type() : type;
58
-
59
- if(type._collection){
60
- metaOpts.type = (type as any);
61
- }
62
-
63
- return function(target: any, key: string) {
64
- Reflect.defineMetadata(`TrackType:${key}`, metaOpts, target);
65
- };
66
- }
67
-
68
- export default TrackType;
69
- export {IMetaOpts, ITrackerOpts};
1
+ import 'reflect-metadata';
2
+ import { ITrackerOpts } from '../models/interfaces/ITrackerOpts';
3
+
4
+ export interface ITrackerMetaOpts extends ITrackerOpts{
5
+ type: any,
6
+ tags: string[],
7
+ }
8
+
9
+ function TrackType(type: any, opts: ITrackerOpts | null = null, tags: string[] = []) {
10
+ if(!opts){
11
+ opts = {
12
+ required: false,
13
+ isArray: false
14
+ };
15
+ }
16
+
17
+ if(!opts?.required){
18
+ opts.required = false;
19
+ }
20
+
21
+ if(!opts?.isArray){
22
+ opts.isArray = false;
23
+ }
24
+
25
+ const required = opts.required;
26
+ const isArray = opts.isArray;
27
+
28
+ const metaOpts: ITrackerMetaOpts = {type, tags, required, isArray};
29
+
30
+ if(opts.relatedToField && opts.relatedTo){
31
+ metaOpts.relatedToField = opts.relatedToField;
32
+ metaOpts.relatedTo = opts.relatedTo;
33
+
34
+ if(!opts.relationField){
35
+ metaOpts.relationField = opts.relatedTo + '_id';
36
+ } else{
37
+ metaOpts.relationField = opts.relationField;
38
+ }
39
+ }
40
+
41
+ if(opts.inversionModel){
42
+ metaOpts.inversionModel = opts.inversionModel;
43
+ }
44
+
45
+ // Copy dbOptions if present
46
+ if(opts.dbOptions){
47
+ metaOpts.dbOptions = opts.dbOptions;
48
+ }
49
+
50
+ if(opts.unique){
51
+ metaOpts.unique = opts.unique;
52
+ }
53
+
54
+ //const resolvedType = typeof type === 'function' ? type() : type;
55
+
56
+ if(type._collection){
57
+ metaOpts.type = (type as any);
58
+ }
59
+
60
+ return function(target: any, key: string) {
61
+ Reflect.defineMetadata(`TrackType:${key}`, metaOpts, target);
62
+ };
63
+ }
64
+
65
+ export default TrackType;
@@ -1,8 +1,16 @@
1
- import InverseRelation from './InverseRelation';
2
- import Relation from './Relation';
3
- import TrackType, { IMetaOpts } from './TrackType';
4
- import InverseTimeSeries from './InverseTimeSeries';
5
-
6
- export {
7
- InverseRelation, Relation, TrackType, InverseTimeSeries, IMetaOpts
8
- };
1
+ import InverseRelation from './InverseRelation';
2
+ import Relation from './Relation';
3
+ import TrackType, { ITrackerMetaOpts } from './TrackType';
4
+ import InverseTimeSeries from './InverseTimeSeries';
5
+ import IdType from './IdType';
6
+ import { ITrackerOpts } from '../models/interfaces/ITrackerOpts';
7
+
8
+ export {
9
+ InverseRelation,
10
+ Relation,
11
+ TrackType,
12
+ IdType,
13
+ InverseTimeSeries,
14
+ ITrackerMetaOpts,
15
+ ITrackerOpts
16
+ };
package/src/empty.js CHANGED
File without changes