-
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.
Merge tag '1.7.0' into merge-1.7.0-into-v2.x
* tag '1.7.0': 1.7.0 Bundle last changes Parser - handle click/clickthrough event for nonlinear/companion ads Parse nonlinear click tracking urls Parse all nonlinear attributes Parse VAST Duration tag with number instead of HH:MM:SS VAST parser returns creative id, adId, sequence and apiFramework attributes Wrapper limit handling (#157) changes to parse altText fixes #154 (#155) Added NonLinear AdParameter Parsing with adequate test in sample.xml #152 (#153) Add Common-tasks.md (#148) 1.6.0 Bundle last changes leftpad cachebusting macro rework resolveURLTemplates() Add unit test for #text extension Remove empty #text/ #comments from parsed extensions Add macros RANDOM/TIMESTAMP/ASSETURI Add setExpand() documentation
- 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.