@cyber-tools/cyber-git 4.0.0 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -5540,7 +5540,7 @@ var import_commander = require("commander");
|
|
|
5540
5540
|
// package.json
|
|
5541
5541
|
var package_default = {
|
|
5542
5542
|
name: "@cyber-tools/cyber-git",
|
|
5543
|
-
version: "4.
|
|
5543
|
+
version: "4.1.0",
|
|
5544
5544
|
description: "\u89C4\u8303\u5316git\u64CD\u4F5C\u7684\u76F8\u5173\u7684\u811A\u672C\u548C\u5DE5\u5177",
|
|
5545
5545
|
main: "./dist/index.js",
|
|
5546
5546
|
scripts: {
|
|
@@ -6171,8 +6171,11 @@ var CreateIgnoreFile = class {
|
|
|
6171
6171
|
* .gitignore文件的内容摸板
|
|
6172
6172
|
* **/
|
|
6173
6173
|
this.ignoreFiletemplate = [
|
|
6174
|
+
"/dist/",
|
|
6175
|
+
"/assest/",
|
|
6174
6176
|
"/node_modules/",
|
|
6175
|
-
"**/.DS_Store",
|
|
6177
|
+
"**/.DS_Store/**",
|
|
6178
|
+
".npmrc",
|
|
6176
6179
|
"package-lock.json"
|
|
6177
6180
|
].join("\n");
|
|
6178
6181
|
}
|
package/package.json
CHANGED