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
import axios from 'axios' | |
/** @type {import('axios').CancelTokenSource) | null } */ | |
export let cancelTokenSource = null | |
export function setCancelTokenSource (source) { | |
cancelTokenSource = source | |
} | |
axios.interceptors.request.use(function (config) { | |
// Do something before request is sent | |
config.cancelToken = cancelTokenSource ? cancelTokenSource.token : null |
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
// yarn add request | |
const request = { | |
get (uri, opts) { | |
// lazy require | |
const request = require('util').promisify(require('request')) | |
const reqOpts = { | |
method: 'GET', | |
timeout: 30000, | |
resolveWithFullResponse: true, | |
json: true, |
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
export const extraKeys = [ | |
'app', | |
'title', | |
'package', | |
'deeplink', | |
'url', | |
'logo', | |
'image', | |
'type' | |
] as const |
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
TypeScript 12 hrs 32 mins ██████████████▎░░░░░░ 68.0% | |
JSON 3 hrs 5 mins ███▌░░░░░░░░░░░░░░░░░ 16.8% | |
JavaScript 2 hrs 6 mins ██▍░░░░░░░░░░░░░░░░░░ 11.4% | |
Other 17 mins ▎░░░░░░░░░░░░░░░░░░░░ 1.6% | |
Markdown 6 mins ▏░░░░░░░░░░░░░░░░░░░░ 0.6% |
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
const execa = require('execa') | |
const path = require('path') | |
const fs = require('fs') | |
async function main() { | |
const scriptPath = path.join(__dirname, 'pc.ps1'); | |
const imagePath = path.resolve(__dirname, 'clipboard.png') | |
try { |
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
const fs = require('fs') | |
const path = require('path') | |
const util = require('util') | |
const exec = util.promisify(require('child_process').exec) | |
const mkdirp = require('mkdirp') | |
const outputPath = 'dist/static' | |
async function main() { | |
try { |
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
const util = require('util') | |
const childProcess = require('child_process') | |
const exec = util.promisify(childProcess.exec) | |
async function main() { | |
try { | |
const { stdout: changeFiles } = await exec( | |
'git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD' | |
) | |
if (changeFiles.includes('package.json')) { |
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
const shell = require('shelljs') | |
if (!shell.which('git')) { | |
shell.echo('Sorry, this script requires git'); | |
shell.exit(1); | |
} | |
shell.exec('git diff --cached',{silent: true}, async (code, stdout, stderr) => { | |
if (code !== 0) return | |
if (!stdout.match(/console\.log/)) return |