Skip to content

Commit

Permalink
update settings
Browse files Browse the repository at this point in the history
  • Loading branch information
shimataro committed Feb 8, 2021
1 parent 237ea58 commit f99c6fd
Show file tree
Hide file tree
Showing 8 changed files with 487 additions and 595 deletions.
124 changes: 2 additions & 122 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,125 +13,5 @@ Thumbs.db
*.orig
*.rej

# TypeScript intermediate

lib/

### Node

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
# dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/
n
# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2

.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.pnp.*
# Node.js modules
/node_modules/
24 changes: 12 additions & 12 deletions dist/index.js → lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports =
/******/ "use strict";
/******/ var __webpack_modules__ = ({

/***/ 571:
/***/ 351:
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {


Expand All @@ -16,7 +16,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
};
Object.defineProperty(exports, "__esModule", ({ value: true }));
const os = __importStar(__nccwpck_require__(87));
const utils_1 = __nccwpck_require__(129);
const utils_1 = __nccwpck_require__(278);
/**
* Commands
*
Expand Down Expand Up @@ -88,7 +88,7 @@ function escapeProperty(s) {

/***/ }),

/***/ 496:
/***/ 186:
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {


Expand All @@ -109,9 +109,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
return result;
};
Object.defineProperty(exports, "__esModule", ({ value: true }));
const command_1 = __nccwpck_require__(571);
const file_command_1 = __nccwpck_require__(124);
const utils_1 = __nccwpck_require__(129);
const command_1 = __nccwpck_require__(351);
const file_command_1 = __nccwpck_require__(717);
const utils_1 = __nccwpck_require__(278);
const os = __importStar(__nccwpck_require__(87));
const path = __importStar(__nccwpck_require__(622));
/**
Expand Down Expand Up @@ -332,7 +332,7 @@ exports.getState = getState;

/***/ }),

/***/ 124:
/***/ 717:
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {


Expand All @@ -349,7 +349,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
/* eslint-disable @typescript-eslint/no-explicit-any */
const fs = __importStar(__nccwpck_require__(747));
const os = __importStar(__nccwpck_require__(87));
const utils_1 = __nccwpck_require__(129);
const utils_1 = __nccwpck_require__(278);
function issueCommand(command, message) {
const filePath = process.env[`GITHUB_${command}`];
if (!filePath) {
Expand All @@ -367,7 +367,7 @@ exports.issueCommand = issueCommand;

/***/ }),

/***/ 129:
/***/ 278:
/***/ ((__unused_webpack_module, exports) => {


Expand All @@ -392,7 +392,7 @@ exports.toCommandValue = toCommandValue;

/***/ }),

/***/ 398:
/***/ 399:
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {


Expand Down Expand Up @@ -421,7 +421,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
Object.defineProperty(exports, "__esModule", ({ value: true }));
const fs_1 = __importDefault(__nccwpck_require__(747));
const path_1 = __importDefault(__nccwpck_require__(622));
const core = __importStar(__nccwpck_require__(496));
const core = __importStar(__nccwpck_require__(186));
/**
* main function
*/
Expand Down Expand Up @@ -582,6 +582,6 @@ module.exports = require("path");;
/******/ // module exports must be returned from runtime so entry inlining is disabled
/******/ // startup
/******/ // Load entry module and return exports
/******/ return __nccwpck_require__(398);
/******/ return __nccwpck_require__(399);
/******/ })()
;
Loading

0 comments on commit f99c6fd

Please sign in to comment.