create-book 1.1.3 → 10.0.1
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/LICENSE +658 -10
- package/README.md +7 -8
- package/dist/chunk-CGNTMUWV.js +3612 -0
- package/dist/chunk-CGNTMUWV.js.map +1 -0
- package/dist/chunk-D4XGRVQ6.js +44 -0
- package/dist/chunk-D4XGRVQ6.js.map +1 -0
- package/dist/chunk-VMSWFJV3.js +3598 -0
- package/dist/chunk-VMSWFJV3.js.map +1 -0
- package/dist/cli.js +42546 -0
- package/dist/cli.js.map +1 -0
- package/dist/esm-37JFDZDP.js +6028 -0
- package/dist/esm-37JFDZDP.js.map +1 -0
- package/dist/multipart-parser-J2AQO3RK.js +179 -0
- package/dist/multipart-parser-J2AQO3RK.js.map +1 -0
- package/dist/multipart-parser-PQ4MHJFX.js +172 -0
- package/dist/multipart-parser-PQ4MHJFX.js.map +1 -0
- package/package.json +13 -43
- package/lib/cli.js +0 -12
- package/templates/default/README.md +0 -14
- package/templates/default/gitignore +0 -130
- package/templates/default/manuscript.md +0 -11
- package/templates/default/package.json +0 -15
- package/templates/default/vivliostyle.config.js +0 -31
package/README.md
CHANGED
|
@@ -1,26 +1,25 @@
|
|
|
1
|
-

|
|
2
2
|
|
|
3
3
|
<div align="center">
|
|
4
|
-
<b>The fastest way to start writing book with Vivliostyle ecosystem.</b
|
|
4
|
+
<b>The fastest way to start writing book with Vivliostyle ecosystem.</b>
|
|
5
5
|
</div>
|
|
6
6
|
|
|
7
7
|
# Create Book
|
|
8
8
|
|
|
9
9
|
[](https://npmjs.com/package/create-book) []()
|
|
10
10
|
|
|
11
|
-
Just run `
|
|
11
|
+
Just run `npm create book` and start writing your book!
|
|
12
12
|
|
|
13
13
|
## Use
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
|
|
17
|
-
#
|
|
18
|
-
|
|
16
|
+
npm create book
|
|
17
|
+
yarn create book # for yarn users
|
|
18
|
+
pnpm create book # for pnpm users
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
<div align="center"><img src="https://raw.githubusercontent.com/vivliostyle/create-book/master/assets/screencast.gif" alt="screencast" /></div>
|
|
22
|
-
|
|
23
21
|
## Maintainer
|
|
24
22
|
|
|
23
|
+
- [spring-raining](https://github.com/spring-raining)
|
|
25
24
|
- [akabeko](https://github.com/akabekobeko)
|
|
26
25
|
- [uetchy](https://github.com/uetchy)
|