-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea703c4
commit 174cb9c
Showing
10 changed files
with
9,634 additions
and
451 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,18 +1,15 @@ | ||
name: Release JavaScript GitHub Action | ||
description: There is no need to commit node_modules. | ||
|
||
branding: | ||
icon: git-branch | ||
color: white | ||
|
||
inputs: | ||
release-branch: | ||
description: The name of branch to push compiled file. | ||
required: true | ||
release-tags: | ||
description: The names of the tag to attach to the commit of the compiled file. | ||
required: false | ||
|
||
runs: | ||
using: node12 | ||
main: index.js | ||
main: dist/index.js |
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,6 @@ | ||
const { readFileSync, writeFileSync } = require('fs'), { Script } = require('vm'), { wrap } = require('module'); | ||
const source = readFileSync(__dirname + '/index.js.cache.js', 'utf-8'); | ||
const cachedData = !process.pkg && require('process').platform !== 'win32' && readFileSync(__dirname + '/index.js.cache'); | ||
const script = new Script(wrap(source), cachedData ? { cachedData } : {}); | ||
(script.runInThisContext())(exports, require, module, __filename, __dirname); | ||
if (cachedData) process.on('exit', () => { try { writeFileSync(__dirname + '/index.js.cache', script.createCachedData()); } catch(e) {} }); |
Binary file not shown.
Oops, something went wrong.