You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
"use strict";
|
|
|
|
const publish = require( "./publish" );
|
|
|
|
if ( process.env.GITHUB_EVENT_NAME === "push" ) {
|
|
|
|
console.log( "Skipping publish because dev release's are only published on `git push`." );
|
|
process.exit( 0 );
|
|
|
|
}
|
|
|
|
publish( "pegjs" );
|