Skip to content

Commit 88a2ecd

Browse files
committed
update(docs):update preview code image
1 parent 3ec818d commit 88a2ecd

8 files changed

+12
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ Summary
99
5. version timestamp follow the yyyy.MM.dd format
1010
```
1111

12+
## 0.6.0 [2022.07.12]
13+
14+
- feat: add qwik framework templates
15+
- fix: fix lit framework boilerplate, start error
16+
- update: docs preview code image
17+
1218
## 0.5.0 [2022.07.07]
1319

1420
- feat: add alpine framework templates

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
![GitHub Language Count](https://img.shields.io/github/languages/count/guocaoyi/create-chrome-ext)
77
[![npm publish](https://github.com/guocaoyi/create-chrome-ext/actions/workflows/npm-publish.yml/badge.svg)](https://github.com/guocaoyi/create-chrome-ext/actions/workflows/npm-publish.yml)
88

9-
> Generating your chrome extension, multiple boilerplates supported!
9+
> Scaffolding your chrome extension, multiple boilerplates supported!
1010
1111
- 🚀 Lightning Fast HMR(use [Vite2](https://vitejs.dev))
1212
- 🥡 Out of Box

docs/crx-build.png

24.1 KB
Loading

docs/crx-install.png

2.57 KB
Loading

docs/crx-run.png

6.49 KB
Loading

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ async function init() {
299299
// determine template
300300
template = variant || framework || template
301301

302-
console.log(`\nGenerating project in ${root}...`)
302+
console.log(`\nScaffolding project in ${root}...`)
303303

304304
// template boilerplate
305305
const templateDir = path.resolve(fileURLToPath(import.meta.url), '..', `template-${template}`)

index.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ test('successfully scaffolds a project based on vue starter template', () => {
7777
const generatedFiles = readdirSync(genPath).sort()
7878

7979
// Assertions
80-
expect(stdout).toContain(`Generating project in ${genPath}`)
80+
expect(stdout).toContain(`Scaffolding project in ${genPath}`)
8181
expect(templateFiles).toEqual(generatedFiles)
8282
})
8383

@@ -88,6 +88,6 @@ test('works with the -t alias', () => {
8888
const generatedFiles = readdirSync(genPath).sort()
8989

9090
// Assertions
91-
expect(stdout).toContain(`Generating project in ${genPath}`)
91+
expect(stdout).toContain(`Scaffolding project in ${genPath}`)
9292
expect(templateFiles).toEqual(generatedFiles)
9393
})

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "create-chrome-ext",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"type": "module",
5-
"description": "Generating your chrome extension, multiple boilerplates supported!",
5+
"description": "Scaffolding your chrome extension, multiple boilerplates supported!",
66
"author": "yalda",
77
"license": "MIT",
88
"main": "index.js",

0 commit comments

Comments
 (0)