@artisan-commerce/analytics-web 0.2.0-canary.105 → 0.2.0-canary.108
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/{bundle.cjs.js → bundle.cjs} +15 -15
- package/dist/bundle.cjs.map +1 -0
- package/dist/bundle.d.ts +90 -90
- package/dist/{bundle.esm.js → bundle.mjs} +15 -13
- package/dist/bundle.mjs.map +1 -0
- package/dist/bundle.umd.js +14 -14
- package/dist/bundle.umd.js.map +1 -1
- package/package.json +14 -13
- package/dist/bundle.cjs.js.map +0 -1
- package/dist/bundle.esm.js.map +0 -1
|
@@ -50,9 +50,10 @@ State$1._instance = null;
|
|
|
50
50
|
|
|
51
51
|
var name = "@artisan-commerce/analytics-web";
|
|
52
52
|
var description = "Artisn commerce analytics web library";
|
|
53
|
-
var version = "0.2.0-canary.
|
|
54
|
-
var
|
|
55
|
-
var
|
|
53
|
+
var version = "0.2.0-canary.107";
|
|
54
|
+
var type = "module";
|
|
55
|
+
var main = "./dist/bundle.cjs";
|
|
56
|
+
var module = "./dist/bundle.mjs";
|
|
56
57
|
var types = "./dist/bundle.d.ts";
|
|
57
58
|
var files = [
|
|
58
59
|
"dist"
|
|
@@ -67,9 +68,9 @@ var scripts = {
|
|
|
67
68
|
test: "jest --watchAll --runInBand",
|
|
68
69
|
"test:all": "yarn test --watchAll=false --coverage",
|
|
69
70
|
"test:ci": "cross-env CI=true jest --runInBand",
|
|
70
|
-
"test:staged": "yarn test:ci
|
|
71
|
+
"test:staged": "yarn test:ci",
|
|
71
72
|
"check-types": "tsc --noEmit",
|
|
72
|
-
lint: "eslint --ignore-path .gitignore --ignore-pattern !cypress/.eslintrc.
|
|
73
|
+
lint: "eslint --ignore-path .gitignore --ignore-pattern !cypress/.eslintrc.cjs --ext .js,jsx,.ts,.tsx .",
|
|
73
74
|
"lint:staged": "yarn lint --max-warnings=0",
|
|
74
75
|
prettier: "prettier --ignore-path .gitignore \"**/*.+(js|jsx|ts|tsx|json|css|scss|html)\"",
|
|
75
76
|
format: "yarn prettier --write",
|
|
@@ -83,10 +84,10 @@ var dependencies = {
|
|
|
83
84
|
"snake-case": "^3.0.4"
|
|
84
85
|
};
|
|
85
86
|
var devDependencies = {
|
|
86
|
-
"@artisan-commerce/products": "0.9.0-canary.
|
|
87
|
-
"@artisan-commerce/shopping-cart-core": "0.12.0-canary.
|
|
88
|
-
"@artisan-commerce/state": "0.3.0-canary.
|
|
89
|
-
"@artisan-commerce/types": "0.14.0-canary.
|
|
87
|
+
"@artisan-commerce/products": "0.9.0-canary.68",
|
|
88
|
+
"@artisan-commerce/shopping-cart-core": "0.12.0-canary.101",
|
|
89
|
+
"@artisan-commerce/state": "0.3.0-canary.17",
|
|
90
|
+
"@artisan-commerce/types": "0.14.0-canary.45"
|
|
90
91
|
};
|
|
91
92
|
var peerDependencies = {
|
|
92
93
|
"@artisan-commerce/products": "*",
|
|
@@ -97,17 +98,17 @@ var nx = {
|
|
|
97
98
|
targets: {
|
|
98
99
|
build: {
|
|
99
100
|
outputs: [
|
|
100
|
-
"
|
|
101
|
+
"{projectRoot}/dist"
|
|
101
102
|
]
|
|
102
103
|
},
|
|
103
104
|
compile: {
|
|
104
105
|
outputs: [
|
|
105
|
-
"
|
|
106
|
+
"{projectRoot}/dist"
|
|
106
107
|
]
|
|
107
108
|
},
|
|
108
109
|
"test:all": {
|
|
109
110
|
outputs: [
|
|
110
|
-
"
|
|
111
|
+
"{projectRoot}/coverage"
|
|
111
112
|
]
|
|
112
113
|
}
|
|
113
114
|
}
|
|
@@ -116,6 +117,7 @@ var packageJSON = {
|
|
|
116
117
|
name: name,
|
|
117
118
|
description: description,
|
|
118
119
|
version: version,
|
|
120
|
+
type: type,
|
|
119
121
|
main: main,
|
|
120
122
|
module: module,
|
|
121
123
|
types: types,
|
|
@@ -13986,4 +13988,4 @@ const identifyUser = (identify) => {
|
|
|
13986
13988
|
};
|
|
13987
13989
|
|
|
13988
13990
|
export { Providers, checkInit, events, identifyUser, initAnalytics, updateActiveVendor };
|
|
13989
|
-
//# sourceMappingURL=bundle.
|
|
13991
|
+
//# sourceMappingURL=bundle.mjs.map
|