nine-hundred 0.0.1 → 0.0.2

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ import { isFirstRun, runInstall } from './install.js';
11
11
  const packageJsonPath = fileURLToPath(new URL('../package.json', import.meta.url));
12
12
  const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
13
13
  function renderWelcome() {
14
- const title = figlet.textSync(packageJson.name, { horizontalLayout: 'fitted' });
14
+ const title = figlet.textSync('900', { horizontalLayout: 'fitted' });
15
15
  const author = typeof packageJson.author === 'string' ? packageJson.author : packageJson.author?.name;
16
16
  const maxLabelWidth = 12;
17
17
  const label = (text) => chalk.bold(text.padEnd(maxLabelWidth));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nine-hundred",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "你好,我是 900。往后你只管往前走,杂事我来盯。",
5
5
  "keywords": [],
6
6
  "license": "ISC",