Skip to content

Commit

Permalink
chore: Fix pnpm tasks error
Browse files Browse the repository at this point in the history
  • Loading branch information
zjxxxxxxxxx committed Dec 14, 2024
1 parent 4ce3859 commit 5026cbb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scripts/create-codesandbox-tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ function main() {

writejson(TASKS_PATH, taskJson);

saveChanges();
}

function saveChanges() {
execSync('git config user.email "954270063@qq.com"');
execSync('git config user.name "zjxxxxxxxxx"');
execSync('git add .');
execSync(`git commit -m 'Timestamp of temporary changes: ${Date.now()}'`);
execSync(`git commit -m 'save changes: ${Date.now()}'`);
}

0 comments on commit 5026cbb

Please sign in to comment.