dceky 1.0.0-beta.1 → 1.0.0-beta.3

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/lib/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  import init from './init';
2
2
  import genConfiguration from './genConfiguration';
3
- export { init, genConfiguration, };
3
+ export { genConfiguration, init, };
package/lib/index.js CHANGED
@@ -3,9 +3,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.genConfiguration = exports.init = void 0;
6
+ exports.init = exports.genConfiguration = void 0;
7
7
  var init_1 = __importDefault(require("./init"));
8
8
  exports.init = init_1.default;
9
9
  var genConfiguration_1 = __importDefault(require("./genConfiguration"));
10
10
  exports.genConfiguration = genConfiguration_1.default;
11
+ // Automatically initialize upon importing the library
12
+ (0, init_1.default)();
11
13
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,gDAA0B;AAIxB,eAJK,cAAI,CAIL;AAHN,wEAAkD;AAIhD,2BAJK,0BAAgB,CAIL"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,gDAA0B;AASxB,eATK,cAAI,CASL;AARN,wEAAkD;AAOhD,2BAPK,0BAAgB,CAOL;AALlB,sDAAsD;AACtD,IAAA,cAAI,GAAE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dceky",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.3",
4
4
  "description": "Cypress toolkit for Harvard DCE",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/index.ts CHANGED
@@ -1,7 +1,11 @@
1
1
  import init from './init';
2
2
  import genConfiguration from './genConfiguration';
3
3
 
4
+ // Automatically initialize upon importing the library
5
+ init();
6
+
7
+ // Exports
4
8
  export {
5
- init,
6
9
  genConfiguration,
10
+ init,
7
11
  };