Skip to content

Commit

Permalink
update package
Browse files Browse the repository at this point in the history
  • Loading branch information
swaathee committed Jun 29, 2020
1 parent 582720e commit 23b1fcc
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 22 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "0.5.9",
"version": "0.6.0",
"npmClient": "yarn",
"useWorkspaces": true
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "clarity",
"private": true,
"version": "0.5.9",
"version": "0.6.0",
"repository": "https://github.com/microsoft/clarity.git",
"author": "Sarvesh Nagpal <sarveshn@microsoft.com>",
"license": "MIT",
Expand All @@ -21,4 +21,4 @@
"devDependencies": {
"lerna": "^3.20.2"
}
}
}
4 changes: 2 additions & 2 deletions packages/clarity-decode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clarity-decode",
"version": "0.5.9",
"version": "0.6.0",
"description": "An analytics library that uses web page interactions to generate aggregated insights",
"author": "Microsoft Corp.",
"license": "MIT",
Expand All @@ -26,7 +26,7 @@
"url": "https://github.com/Microsoft/clarity/issues"
},
"dependencies": {
"clarity-js": "^0.5.9",
"clarity-js": "^0.6.0",
"tslint-microsoft-contrib": "^6.2.0"
},
"devDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions packages/clarity-devtools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clarity-devtools",
"version": "0.5.9",
"version": "0.6.0",
"private": true,
"description": "Adds Clarity debugging support to browser devtools",
"author": "Microsoft Corp.",
Expand All @@ -24,9 +24,9 @@
"url": "https://github.com/Microsoft/clarity/issues"
},
"dependencies": {
"clarity-decode": "^0.5.9",
"clarity-js": "^0.5.9",
"clarity-visualize": "^0.5.9",
"clarity-decode": "^0.6.0",
"clarity-js": "^0.6.0",
"clarity-visualize": "^0.6.0",
"tslint-microsoft-contrib": "^6.2.0"
},
"devDependencies": {
Expand Down
32 changes: 23 additions & 9 deletions packages/clarity-devtools/static/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"manifest_version": 2,
"name": "Clarity Developer Tools",
"description": "Get insights about how customers use your website.",
"version": "0.5.9",
"version_name": "0.5.9",
"version": "0.6.0",
"version_name": "0.6.0",
"minimum_chrome_version": "50",
"devtools_page": "devtools.html",
"icons": {
Expand All @@ -18,13 +18,27 @@
"default_title": "Clarity Developer Tools",
"default_popup": "popup.html"
},
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"js": ["content.js"]
}],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"content.js"
]
}
],
"background": {
"scripts": ["background.js"],
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": ["http://*/*", "https://*/*", "storage", "tabs"]
}
"permissions": [
"http://*/*",
"https://*/*",
"storage",
"tabs"
]
}
2 changes: 1 addition & 1 deletion packages/clarity-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clarity-js",
"version": "0.5.9",
"version": "0.6.0",
"description": "An analytics library that uses web page interactions to generate aggregated insights",
"author": "Microsoft Corp.",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/clarity-js/src/core/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
let version = "0.5.9";
let version = "0.6.0";
export default version;
4 changes: 2 additions & 2 deletions packages/clarity-visualize/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clarity-visualize",
"version": "0.5.9",
"version": "0.6.0",
"description": "An analytics library that uses web page interactions to generate aggregated insights",
"author": "Microsoft Corp.",
"license": "MIT",
Expand All @@ -27,7 +27,7 @@
"url": "https://github.com/Microsoft/clarity/issues"
},
"dependencies": {
"clarity-decode": "^0.5.9",
"clarity-decode": "^0.6.0",
"tslint-microsoft-contrib": "^6.2.0"
},
"devDependencies": {
Expand Down

0 comments on commit 23b1fcc

Please sign in to comment.