-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from vivliostyle/chore/theme-updates
fix: Add a `main` property for package.json
- Loading branch information
Showing
9 changed files
with
29 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
'@vivliostyle/theme-gutenberg': patch | ||
'@vivliostyle/theme-academic': patch | ||
'@vivliostyle/theme-techbook': patch | ||
'@vivliostyle/theme-epub3j': patch | ||
'@vivliostyle/theme-bunko': patch | ||
'@vivliostyle/theme-slide': patch | ||
'create-vivliostyle-theme': patch | ||
'@vivliostyle/theme-base': patch | ||
--- | ||
|
||
Add a `main` property for package.json. | ||
This is useful for use with third-party libraries that are expected to have a `main` field in package.json. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
"description": "Academic theme", | ||
"version": "1.0.0", | ||
"author": "Vivliostyle <[email protected]>", | ||
"main": "theme.css", | ||
"scripts": { | ||
"build": "vivliostyle build", | ||
"preview": "vivliostyle preview", | ||
|
@@ -46,7 +47,7 @@ | |
"theme": { | ||
"name": "Academic", | ||
"category": "academic", | ||
"style": "./theme.css", | ||
"style": "theme.css", | ||
"topics": [ | ||
"Academic", | ||
"Report" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
"description": "Base theme and CSS toolkit for Vivliostyle themes", | ||
"version": "1.0.0", | ||
"author": "Vivliostyle <[email protected]>", | ||
"main": "theme-all.css", | ||
"scripts": { | ||
"build": "vivliostyle build", | ||
"preview": "vivliostyle preview", | ||
|
@@ -44,7 +45,7 @@ | |
"theme": { | ||
"name": "Vivliostyle Base Theme", | ||
"author": "Vivliostyle <[email protected]>", | ||
"style": "./theme-all.css", | ||
"style": "theme-all.css", | ||
"category": "misc", | ||
"topics": [] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
"description": "文庫用のテーマ", | ||
"version": "1.0.0", | ||
"author": "Vivliostyle <[email protected]>", | ||
"main": "theme.css", | ||
"scripts": { | ||
"build": "vivliostyle build", | ||
"preview": "vivliostyle preview", | ||
|
@@ -45,7 +46,7 @@ | |
"vivliostyle": { | ||
"theme": { | ||
"name": "Bunko", | ||
"style": "./theme.css", | ||
"style": "theme.css", | ||
"category": "novel", | ||
"topics": [ | ||
"小説", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
"description": "EPUB3 (Japanese) 日本語EPUB用テーマ(電書協EPUB3制作ガイド準拠)", | ||
"version": "1.0.0", | ||
"author": "Vivliostyle <[email protected]>", | ||
"main": "theme.css", | ||
"scripts": { | ||
"build": "vivliostyle build", | ||
"preview": "vivliostyle preview", | ||
|
@@ -43,7 +44,7 @@ | |
"vivliostyle": { | ||
"theme": { | ||
"name": "EPUB3 (Japanese)", | ||
"style": "./theme.css", | ||
"style": "theme.css", | ||
"category": "misc", | ||
"topics": [] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
"description": "Book theme for latin font", | ||
"version": "1.0.0", | ||
"author": "Vivliostyle <[email protected]>", | ||
"main": "theme.css", | ||
"scripts": { | ||
"build": "vivliostyle build", | ||
"preview": "vivliostyle preview", | ||
|
@@ -38,7 +39,7 @@ | |
"theme": { | ||
"name": "Gutenberg", | ||
"author": "Vivliostyle <[email protected]>", | ||
"style": "./theme.css", | ||
"style": "theme.css", | ||
"category": "novel", | ||
"topics": [] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
"description": "Slide theme", | ||
"version": "1.0.0", | ||
"author": "Vivliostyle <[email protected]>", | ||
"main": "theme.css", | ||
"scripts": { | ||
"build": "vivliostyle build", | ||
"preview": "vivliostyle preview", | ||
|
@@ -46,7 +47,7 @@ | |
"theme": { | ||
"name": "Slide", | ||
"category": "misc", | ||
"style": "./theme.css", | ||
"style": "theme.css", | ||
"topics": [ | ||
"Slide" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
"description": "Techbook (技術同人誌) theme", | ||
"version": "1.0.0", | ||
"author": "Vivliostyle <[email protected]>", | ||
"main": "theme.css", | ||
"scripts": { | ||
"build": "vivliostyle build", | ||
"preview": "vivliostyle preview", | ||
|
@@ -46,7 +47,7 @@ | |
"theme": { | ||
"name": "Techbook", | ||
"category": "misc", | ||
"style": "./theme.css", | ||
"style": "theme.css", | ||
"topics": [ | ||
"Techbook" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters