mirror of
https://github.com/jaywcjlove/wxmp.git
synced 2026-01-11 15:58:48 +08:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
33a60420a4 | ||
|
|
c7dba6d5de | ||
|
|
ed596a7403 |
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -143,6 +143,8 @@ jobs:
|
|||||||
run: npm run deps
|
run: npm run deps
|
||||||
|
|
||||||
- run: npm run build:app
|
- run: npm run build:app
|
||||||
|
- working-directory: electron/app/dist
|
||||||
|
run: ls -R
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
@@ -174,6 +176,8 @@ jobs:
|
|||||||
run: npm run deps
|
run: npm run deps
|
||||||
|
|
||||||
- run: npm run build:app
|
- run: npm run build:app
|
||||||
|
- working-directory: electron/app/dist
|
||||||
|
run: ls -R
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
@@ -205,6 +209,8 @@ jobs:
|
|||||||
run: npm run deps
|
run: npm run deps
|
||||||
|
|
||||||
- run: npm run build:app
|
- run: npm run build:app
|
||||||
|
- working-directory: electron/app/dist
|
||||||
|
run: ls -R
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "wxmp",
|
"name": "wxmp",
|
||||||
"description": "微信公众号 Markdown 编辑器",
|
"description": "微信公众号 Markdown 编辑器",
|
||||||
"homepage": "https://github.com/jaywcjlove/wxmp.git",
|
"homepage": "https://github.com/jaywcjlove/wxmp.git",
|
||||||
"version": "2.3.2",
|
"version": "2.3.3",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"author": "Kenny Wong <398188662@qq.com>",
|
"author": "Kenny Wong <398188662@qq.com>",
|
||||||
"private": true,
|
"private": true,
|
||||||
@@ -18,13 +18,13 @@
|
|||||||
"build": "npm run copy && cross-env NODE_ENV=production electron-builder build --publish=never --config config.json"
|
"build": "npm run copy && cross-env NODE_ENV=production electron-builder build --publish=never --config config.json"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@wcj/wxmp-main": "2.3.2"
|
"@wcj/wxmp-main": "2.3.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@wcj/wxmp-preload": "2.3.2",
|
"@wcj/wxmp-preload": "2.3.3",
|
||||||
"cpy-cli": "4.2.0",
|
"cpy-cli": "4.2.0",
|
||||||
"electron": "20.1.3",
|
"electron": "20.1.3",
|
||||||
"electron-builder": "23.3.3",
|
"electron-builder": "23.3.3",
|
||||||
"website": "2.3.2"
|
"website": "2.3.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@wcj/wxmp-main",
|
"name": "@wcj/wxmp-main",
|
||||||
"version": "2.3.2",
|
"version": "2.3.3",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@wcj/wxmp-preload",
|
"name": "@wcj/wxmp-preload",
|
||||||
"version": "2.3.2",
|
"version": "2.3.3",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "2.3.2",
|
"version": "2.3.3",
|
||||||
"packages": ["website", "electron/*"]
|
"packages": ["website", "electron/*"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "website",
|
"name": "website",
|
||||||
"version": "2.3.2",
|
"version": "2.3.3",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "kkt start",
|
"start": "kkt start",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import styled from 'styled-components';
|
|||||||
|
|
||||||
const Link = styled(NavLink)`
|
const Link = styled(NavLink)`
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
line-height: 0.8rem;
|
line-height: 0.7rem;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
padding: 0.18rem 0.3rem;
|
padding: 0.18rem 0.3rem;
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ const Select = styled.select`
|
|||||||
padding: 0 0.2rem 0 0.2rem;
|
padding: 0 0.2rem 0 0.2rem;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-size: 0.8rem;
|
font-size: 0.7rem;
|
||||||
outline: none;
|
outline: none;
|
||||||
height: 1.15rem;
|
height: 1.15rem;
|
||||||
cursor: inherit;
|
cursor: inherit;
|
||||||
|
|||||||
Reference in New Issue
Block a user