Skip to content

Commit ac9caa8

Browse files
author
Paul Boocock
committed
Prepare for release
1 parent 7989f42 commit ac9caa8

File tree

7 files changed

+178
-31
lines changed

7 files changed

+178
-31
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Version 2.16.0 (2020-09-28)
2+
---------------------------
3+
Switch to Github Actions (#844)
4+
Add license banner to rollup builds (#845)
5+
Bump snowplow-tracker-core to 0.9.2 (#841)
6+
Update Snowplow Micro to v1 (#837)
7+
Use Closure Compiler to reduce sp.js size (#583)
8+
Switch to rollup and gulp (#752)
9+
110
Version 2.15.0 (2020-08-17)
211
---------------------------
312
Add anonymized tracking options (closes #793)

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ client-side tier of your websites and web apps.
2323

2424
## Developers
2525

26-
### Contributing quickstart
26+
### Contributing quick start
2727

2828
Assuming git and [Docker][docker-install] installed:
2929

@@ -41,15 +41,17 @@ host$ docker build -t core .
4141
host$ docker run -v "$(pwd)":"/code" core npm run build
4242
```
4343

44+
From the `/core` folder, build the core library using `npm run build` and run unit tests with `npm run test`.
45+
4446
#### Building Tracker
4547

4648
```bash
4749
host$ cd snowplow-javascript-tracker
4850
host$ docker build -t tracker .
49-
host$ docker run -v "$(pwd)":"/code" tracker grunt
51+
host$ docker run -v "$(pwd)":"/code" tracker npm run build
5052
```
5153

52-
Build the tracker (default task concatenates and minifies) using `grunt`.
54+
Build the tracker using `npm run build` and run unit tests with `npm run test:unit`.
5355

5456
## Testing
5557

@@ -70,19 +72,16 @@ Licensed under the [Simplified BSD][bsd] license.
7072
[docker-install]: https://docs.docker.com/install/
7173
[piwik]: http://piwik.org/
7274
[piwikjs]: https://github.com/piwik/piwik/blob/master/js/piwik.js
73-
[piwikphp]: https://github.com/piwik/piwik/blob/master/piwik.php
7475
[bsd]: http://www.opensource.org/licenses/bsd-license.php
7576
[setup]: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/javascript-tracker/general-parameters/
7677
[tech-docs]: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/javascript-tracker/
7778
[techdocs-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/techdocs.png
7879
[setup-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/setup.png
7980
[contributing-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/contributing.png
80-
[release-image]: https://img.shields.io/badge/release-2.15.0-blue.svg?style=flat
81+
[release-image]: https://img.shields.io/badge/release-2.16.0-blue.svg?style=flat
8182
[releases]: https://github.com/snowplow/snowplow-javascript-tracker/releases
82-
[grunt-image]: https://cdn.gruntjs.com/builtwith.png
83-
[grunt]: https://gruntjs.com/
84-
[gh-actions]: https://github.com/snowplow/snowplow-nodejs-tracker/actions
85-
[gh-actions-image]: https://github.com/snowplow/snowplow-nodejs-tracker/workflows/Build/badge.svg
83+
[gh-actions]: https://github.com/snowplow/snowplow-javascript-tracker/actions
84+
[gh-actions-image]: https://github.com/snowplow/snowplow-javascript-tracker/workflows/Build/badge.svg
8685
[saucelabs]: https://saucelabs.com/u/snowplow
8786
[saucelabs-button-image]: https://app.saucelabs.com/buildstatus/snowplow
8887
[saucelabs-matrix-image]: https://app.saucelabs.com/browser-matrix/snowplow.svg

core/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "snowplow-tracker-core",
3-
"version": "0.9.2",
3+
"version": "0.9.3",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/esm/index.d.ts",

examples/sp.js

Lines changed: 157 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "snowplow-tracker",
3-
"version": "2.15.0",
3+
"version": "2.16.0",
44
"scripts": {
55
"build": "gulp build",
66
"build:all": "(cd core && npm run build) && npm run build",

0 commit comments

Comments
 (0)