We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07d4ac8 commit 21b0f6fCopy full SHA for 21b0f6f
release.js
@@ -16,7 +16,7 @@ var commonTasks, stableTasks,
16
};
17
18
fs.readdirSync( "./lib" ).forEach(function( filename ) {
19
- if ( filename.slice( -3 ) === ".js" ) {
+ if ( filename.endsWith( ".js" ) ) {
20
require( "./lib/" + filename )( Release );
21
}
22
});
0 commit comments