@ibiliaze/global-vars 1.56.0 → 1.58.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.
- package/dist/globals.d.ts +1 -1
- package/dist/globals.js +3 -2
- package/dist/index.d.ts +0 -2
- package/dist/index.js +3 -5
- package/package.json +2 -2
package/dist/globals.d.ts
CHANGED
package/dist/globals.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.globals = void 0;
|
|
3
4
|
const pages_1 = require("./ticketops/pages");
|
|
4
|
-
|
|
5
|
+
exports.globals = {
|
|
5
6
|
TradeOps_a: {},
|
|
6
7
|
SabahFK_A: {
|
|
7
8
|
cart: { timer: 10 * 60 * 1000, limit: 100 },
|
|
@@ -22,4 +23,4 @@ const globals = {
|
|
|
22
23
|
tickets: { accessControl: 'tacs', pages: pages_1.pages },
|
|
23
24
|
},
|
|
24
25
|
};
|
|
25
|
-
exports.default = globals;
|
|
26
|
+
exports.default = exports.globals;
|
package/dist/index.d.ts
CHANGED
|
@@ -3,5 +3,3 @@ export type { Cart, User, Globals, GlobalVars } from './globals';
|
|
|
3
3
|
export type { Checkout, Epoint, EpointLang, Local, LocalItem } from './checkout';
|
|
4
4
|
export type * from './ticketops/inputsDefault';
|
|
5
5
|
export type * from './ticketops/pages';
|
|
6
|
-
export { default } from './globals';
|
|
7
|
-
export { default as globals } from './globals';
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.countries = void 0;
|
|
4
4
|
var countries_1 = require("./countries");
|
|
5
5
|
Object.defineProperty(exports, "countries", { enumerable: true, get: function () { return countries_1.countries; } });
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
var globals_2 = require("./globals");
|
|
9
|
-
Object.defineProperty(exports, "globals", { enumerable: true, get: function () { return globals_2.default; } });
|
|
6
|
+
// export { default } from './globals';
|
|
7
|
+
// export { default as globals } from './globals';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiliaze/global-vars",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.58.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "tsc",
|
|
23
23
|
"pub": "npm publish --access public",
|
|
24
|
-
"git": "git add .; git commit -m 'changes'; git tag -a v1.
|
|
24
|
+
"git": "git add .; git commit -m 'changes'; git tag -a v1.58.0 -m 'v1.58.0'; git push origin v1.58.0; git push",
|
|
25
25
|
"push": "npm run build; npm run git; npm run pub"
|
|
26
26
|
},
|
|
27
27
|
"author": "Ibi Hasanli",
|