-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add setExpand() documentation * Add macros RANDOM/TIMESTAMP/ASSETURI * Remove empty #text/ #comments from parsed extensions * Add unit test for #text extension * rework resolveURLTemplates() * leftpad cachebusting macro * Bundle last changes * 1.6.0 * Add Common-tasks.md (#148) * Added NonLinear AdParameter Parsing with adequate test in sample.xml #152 (#153) * changes to parse altText fixes #154 (#155) * Wrapper limit handling (#157) * Added wrapperLimit to options * Fixed error forwarding inside wrappers * VAST parser returns creative id, adId, sequence and apiFramework attributes * Parse VAST Duration tag with number instead of HH:MM:SS * Parse all nonlinear attributes * Parse nonlinear click tracking urls * Parser - handle click/clickthrough event for nonlinear/companion ads * Bundle last changes * 1.7.0
- Loading branch information
Showing
13 changed files
with
606 additions
and
315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
dist/* | ||
node_modules/* | ||
bower_components/* | ||
npm-debug.log | ||
npm-debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Common tasks | ||
|
||
This document describes common tasks used during the project life-cycle (mostly release-related). | ||
We might want to automate some of them in a near future (e.g via Travis). | ||
For now, let's use this document to make sure everyone is on the same page. | ||
|
||
## Release a new version | ||
|
||
``` bash | ||
git checkout master | ||
npm run test | ||
npm run bundle | ||
git add . && git commit -m "Bundle last changes" | ||
npm version <major|minor|patch> # depending on the changes | ||
npm publish | ||
git push --tags origin master | ||
``` | ||
|
||
## Release a new alpha version : | ||
|
||
``` bash | ||
git checkout v2.x | ||
npm run test | ||
npm run bundle | ||
git add . && git commit -m "Bundle last changes" | ||
npm version prerelease | ||
npm publish --tag alpha | ||
git push --tags origin v2.x | ||
``` | ||
|
||
## Merge the latest version back into the v2.x branch | ||
|
||
``` bash | ||
# assuming 1.6.0 tag exists and is the latest | ||
git checkout -b merge-1.6.0-into-v2.x | ||
git merge 1.6.0 | ||
# fix conflicts then git add conflicting files | ||
npm run test | ||
git commit | ||
git push origin merge-1.6.0-into-v2.x | ||
# Create PR on Github (based on `v2.x` branch) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.