Skip to content

Commit

Permalink
refactor: Massive refactor of the plugin.
Browse files Browse the repository at this point in the history
Splits the plugin into multiple files.
Now uses reasonable developer and release workflows (outlined in DEVELOPING.md).
  • Loading branch information
shawnbuso committed Dec 5, 2017
1 parent 95c2bd7 commit a5cd819
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/postversion.js
Expand Up @@ -11,10 +11,10 @@ process.chdir(path.resolve(__dirname, '..'));
// Merge master.
// npm install.
const preSedCommands = [
'git push origin re-write',
'git push origin master',
'git push --tags',
'git checkout gh-pages',
'git merge -X theirs re-write -m "Syncing gh-pages to re-write v' + pkg.version + '"'
'git merge -X theirs master -m "Syncing gh-pages to master v' + pkg.version + '"'
];
console.log('Executing pre sed commands');
try {
Expand Down Expand Up @@ -72,7 +72,7 @@ const postSedCommands = [
'git add -f node_modules/videojs-contrib-ads/dist/videojs.ads.min.js',
'git commit -m "Build for samples at v' + pkg.version + '"',
'git push origin gh-pages',
'git checkout re-write'
'git checkout master'
];
console.log('Executing post-sed commands');
try {
Expand Down

0 comments on commit a5cd819

Please sign in to comment.