Initial commit

This commit is contained in:
jiapengyu
2026-07-27 13:37:48 +08:00
commit ecba71e2a5
39123 changed files with 5989154 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
console.error(`=============================================
simple-git has supported promises / async await since version 2.6.0.
Importing from 'simple-git/promise' has been deprecated and will
report this error until the next major release of version 4.
To upgrade, change all 'simple-git/promise' imports to just 'simple-git'
=============================================`);
const simpleGit = require('.');
module.exports = Object.assign(
function () {
return simpleGit.gitP.apply(null, arguments);
},
simpleGit,
{ default: simpleGit.gitP }
);