posthog-js 1.28.0 → 1.29.2
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/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/dist/array.js +2 -60
- package/dist/array.js.map +1 -1
- package/dist/es.js +4 -2
- package/dist/es.js.map +1 -1
- package/dist/module.d.ts +427 -3
- package/dist/module.js +4 -2
- package/dist/module.js.map +1 -1
- package/lib/package.json +91 -0
- package/package.json +17 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.29.2 - 2022-08-25
|
|
2
|
+
|
|
3
|
+
- fix(typing): rrweb types (#441)
|
|
4
|
+
|
|
5
|
+
## 1.29.1 - 2022-08-23
|
|
6
|
+
|
|
7
|
+
- fix(toolbar): Use apiURL from state if set (#438)
|
|
8
|
+
|
|
9
|
+
## 1.29.0 - 2022-08-16
|
|
10
|
+
|
|
11
|
+
- fix: Use rollup and fix define module issues (#434)
|
|
12
|
+
|
|
1
13
|
## 1.27.0 - 2022-08-01
|
|
2
14
|
|
|
3
15
|
- refactor: Dummy commit to trigger release (#431)
|
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ Testing on IE11 requires a bit more setup.
|
|
|
17
17
|
|
|
18
18
|
1. Run `posthog` locally on port 8000 (`DEBUG=1 TEST=1 ./bin/start`).
|
|
19
19
|
2. Run `python manage.py setup_dev --no-data` on posthog repo, which sets up a demo account.
|
|
20
|
-
3. Optional: rebuild array.js on changes: `nodemon -w src/ --exec bash -c "yarn build-
|
|
20
|
+
3. Optional: rebuild array.js on changes: `nodemon -w src/ --exec bash -c "yarn build-rollup"`.
|
|
21
21
|
4. Export browserstack credentials: `export BROWSERSTACK_USERNAME=xxx BROWSERSTACK_ACCESS_KEY=xxx`.
|
|
22
22
|
5. Run tests: `npx testcafe "browserstack:ie" testcafe/e2e.spec.js`.
|
|
23
23
|
|