@snowplow/browser-plugin-debugger 3.24.2 → 3.24.3-dev.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/index.module.js +3 -3
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +855 -850
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +2 -2
- package/dist/index.umd.min.js.map +1 -1
- package/package.json +6 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snowplow/browser-plugin-debugger",
|
|
3
|
-
"version": "3.24.
|
|
3
|
+
"version": "3.24.3-dev.0",
|
|
4
4
|
"description": "Debugger for Snowplow",
|
|
5
5
|
"homepage": "http://bit.ly/sp-js",
|
|
6
6
|
"bugs": "https://github.com/snowplow/snowplow-javascript-tracker/issues",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"dist"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@snowplow/browser-tracker-core": "3.24.2",
|
|
22
|
-
"@snowplow/tracker-core": "3.24.2",
|
|
23
21
|
"randomcolor": "^0.6.2",
|
|
24
|
-
"tslib": "^2.3.1"
|
|
22
|
+
"tslib": "^2.3.1",
|
|
23
|
+
"@snowplow/tracker-core": "3.24.3-dev.0",
|
|
24
|
+
"@snowplow/browser-tracker-core": "3.24.3-dev.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@ampproject/rollup-plugin-closure-compiler": "~0.27.0",
|
|
@@ -46,11 +46,10 @@
|
|
|
46
46
|
"typescript": "~4.6.2"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@snowplow/browser-tracker": "~3.24.
|
|
49
|
+
"@snowplow/browser-tracker": "~3.24.3-dev.0"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "rollup -c --silent --failAfterWarnings",
|
|
53
53
|
"test": ""
|
|
54
|
-
}
|
|
55
|
-
"readme": "# Snowplow Advertising Tracking\n\n[![npm version][npm-image]][npm-url]\n[![License][license-image]](LICENSE)\n\nBrowser Plugin to be used with `@snowplow/browser-tracker`.\n\nAdds debugging to your Snowplow tracking.\n\n## Maintainer quick start\n\nPart of the Snowplow JavaScript Tracker monorepo. \nBuild with [Node.js](https://nodejs.org/en/) (14 or 16) and [Rush](https://rushjs.io/).\n\n### Setup repository\n\n```bash\nnpm install -g @microsoft/rush \ngit clone https://github.com/snowplow/snowplow-javascript-tracker.git\nrush update\n```\n\n## Package Installation\n\nWith npm:\n\n```bash\nnpm install @snowplow/browser-plugin-debugger\n```\n\n## Usage\n\nInitialize your tracker with the DebuggerPlugin:\n\n```js\nimport { newTracker } from '@snowplow/browser-tracker';\nimport { DebuggerPlugin } from '@snowplow/browser-plugin-debugger';\n\nnewTracker('sp1', '{{collector}}', { plugins: [ DebuggerPlugin() ] }); // Also stores reference at module level\n```\n\nThen additional debugging information will be available in your browsers Developer Tools.\n\n## Copyright and license\n\nLicensed and distributed under the [BSD 3-Clause License](LICENSE) ([An OSI Approved License][osi]).\n\nCopyright (c) 2022 Snowplow Analytics Ltd, 2010 Anthon Pang.\n\nAll rights reserved.\n\n[npm-url]: https://www.npmjs.com/package/@snowplow/browser-plugin-ad-tracking\n[npm-image]: https://img.shields.io/npm/v/@snowplow/browser-plugin-ad-tracking\n[docs]: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/javascript-tracker/\n[osi]: https://opensource.org/licenses/BSD-3-Clause\n[license-image]: https://img.shields.io/npm/l/@snowplow/browser-plugin-ad-tracking\n"
|
|
54
|
+
}
|
|
56
55
|
}
|