vivliostyle / themes

💅 Beautifully crafted CSS themes.
https://vivliostyle.github.io/themes/
Other
30 stars 10 forks source link

Add "config" to "files" of theme-gutenberg/package.json #86

Closed MurakamiShinyu closed 2 years ago

MurakamiShinyu commented 2 years ago

theme-gutenberg の vivliostyle.config.js の内容は './config/alice/vivliostyle.config.js' を取り込むようになっています:

const config = require('./config/alice/vivliostyle.config.js');

module.exports = config;

しかし、theme-gutenberg の package.json の "files" に "config" がないために、"config" ディレクトリがコピーされないため、 require('./config/alice/vivliostyle.config.js'); でエラーになります。

そこで package.json の "files" に "config" を追加しました。

yamasy1549 commented 2 years ago

@MurakamiShinyu 見落としていました。ありがとうございます!