You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import { execSync } from 'child_process';
-
- const file =
- process.argv[2]
-
- if (file !== undefined && file.length === 0) {
- throw new Error("引数不正")
- }
- if (!file.endsWith('customize-manifest.json')) {
- throw new Error("ファイル名不正 customize-manifest.jsonを指定してください")
- }
-
-
- console.log('\nuploading... ', file);
- const command = `npx kintone-customize-uploader `;
- const result = execSync(command + file);
- console.log('\n' + result);
-
|