uxos 1.0.2 โ 1.0.4
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/cli.js +2 -8
- package/package.json +2 -2
package/cli.js
CHANGED
|
@@ -5,8 +5,6 @@ const path = require('path');
|
|
|
5
5
|
|
|
6
6
|
const targetDir = process.cwd();
|
|
7
7
|
|
|
8
|
-
console.log('๐ UXOS ๅผๅงๅฎ่ฃ
...\n');
|
|
9
|
-
|
|
10
8
|
// ๆท่ดๆๆๆไปถๅฐ้กน็ฎ็ฎๅฝ
|
|
11
9
|
const copyFiles = [
|
|
12
10
|
['config/user-template.yaml', 'config/user-template.yaml'],
|
|
@@ -28,11 +26,7 @@ copyFiles.forEach(([src, dest]) => {
|
|
|
28
26
|
|
|
29
27
|
const content = fs.readFileSync(srcPath, 'utf8');
|
|
30
28
|
fs.writeFileSync(destPath, content, 'utf8');
|
|
31
|
-
console.log(`โ
ๅทฒๅๅปบ: ${dest}`);
|
|
32
29
|
});
|
|
33
30
|
|
|
34
|
-
|
|
35
|
-
console.log('
|
|
36
|
-
console.log('โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ');
|
|
37
|
-
console.log('๐ workflows/init.md');
|
|
38
|
-
console.log('โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ\n');
|
|
31
|
+
// ็บฏๆง่กๆไปค๏ผๆ ้ขๅค่ฏดๆ
|
|
32
|
+
console.log('\nAI: Read workflows/init.md');
|
package/package.json
CHANGED