mirror of
https://github.com/koodo-reader/koodo-reader.git
synced 2025-12-23 23:17:55 -05:00
bug修复
Former-commit-id: d6b9ca98be6905fd524979f55a1aae12b68d8864
This commit is contained in:
2
.travis.yml
vendored
2
.travis.yml
vendored
@@ -30,7 +30,7 @@ install:
|
||||
before_script:
|
||||
- git lfs pull
|
||||
script:
|
||||
- yarn run release
|
||||
- yarn release
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
|
||||
5
package.json
vendored
5
package.json
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "koodo-reader",
|
||||
"main": "main.js",
|
||||
"main": "main.ts",
|
||||
"version": "1.9.0",
|
||||
"description": "A cross-platform open source Epub reader ",
|
||||
"author": {
|
||||
@@ -40,7 +40,7 @@
|
||||
"build/**/*",
|
||||
"node_modules/**/*",
|
||||
"package.json",
|
||||
"main.js"
|
||||
"main.ts"
|
||||
],
|
||||
"directories": {
|
||||
"buildResources": "assets"
|
||||
@@ -48,6 +48,7 @@
|
||||
"publish": [
|
||||
"github"
|
||||
],
|
||||
"extends": null,
|
||||
"dmg": {
|
||||
"contents": [
|
||||
{
|
||||
|
||||
4
webpack.config.js
vendored
4
webpack.config.js
vendored
@@ -2,10 +2,10 @@ const path = require("path");
|
||||
|
||||
module.exports = {
|
||||
target: "electron-main",
|
||||
entry: "./main.js",
|
||||
entry: "./main.ts",
|
||||
output: {
|
||||
path: path.resolve(__dirname, "./build"),
|
||||
filename: "main.js",
|
||||
filename: "main.ts",
|
||||
},
|
||||
resolve: {
|
||||
extensions: [".ts", ".js", ".tsx"],
|
||||
|
||||
Reference in New Issue
Block a user