mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-15 15:10:31 -08:00
0.1.0 First Alpha Release
Seems 0.a.1 is not allowed ``` npm ERR! Invalid version: "0.a.1" ``` fix: bad ico chore: try to solve issue chore: try skip auth chore: try skip auth chore: sign fix: Error: Failed to upload app to Apple's notarization servers chore: skip
This commit is contained in:
parent
567a5b2069
commit
833935cd93
10 changed files with 433 additions and 7 deletions
6
.github/workflows/macos.yml
vendored
6
.github/workflows/macos.yml
vendored
|
|
@ -26,13 +26,13 @@ jobs:
|
|||
- name: Get tag name
|
||||
run: echo ::set-env name=CI_BUILD_TAG::${GITHUB_REF/refs\/tags\//}
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
- run: npm run dist
|
||||
- run: npm run dist-dev
|
||||
env:
|
||||
CI: true
|
||||
CI_PULL_REQUEST: ${{ github.event_name == 'pull_request' }}
|
||||
APPLE_ID: ${{ secrets.APPLE_ID }}
|
||||
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
|
||||
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
|
||||
CSC_LINK: ${{ secrets.CSC_LINK }}
|
||||
# CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
|
||||
# CSC_LINK: ${{ secrets.CSC_LINK }}
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
REACT_APP_LICENSE_SECRET: ${{ secrets.REACT_APP_LICENSE_SECRET }}
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 110 KiB |
1
dist.js
1
dist.js
|
|
@ -117,6 +117,7 @@ const options = {
|
|||
],
|
||||
},
|
||||
afterSign: (context) => {
|
||||
return null;
|
||||
const shouldNotarize = process.platform === 'darwin' && context.electronPlatformName === 'darwin' && process.env.CI_BUILD_TAG;
|
||||
if (!shouldNotarize) return null;
|
||||
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ baseurl: "" # the subpath of your site, e.g. /blog
|
|||
url: "https://singleboxapp.com" # the base hostname & protocol for your site, e.g. http://example.com
|
||||
|
||||
# Custom
|
||||
singlebox_version: 0.a.1
|
||||
singlebox_version: 0.1.0
|
||||
|
||||
# Build settings
|
||||
markdown: kramdown
|
||||
|
|
|
|||
39
flow-typed/npm/if-env_vx.x.x.js
vendored
Normal file
39
flow-typed/npm/if-env_vx.x.x.js
vendored
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
// flow-typed signature: 6a9b5b3002405907aef22290e2d1bd51
|
||||
// flow-typed version: <<STUB>>/if-env_v^1.0.4/flow_v0.129.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'if-env'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'if-env' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'if-env/bin/if-env' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'if-env/test/if-env.test' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'if-env/bin/if-env.js' {
|
||||
declare module.exports: $Exports<'if-env/bin/if-env'>;
|
||||
}
|
||||
declare module 'if-env/test/if-env.test.js' {
|
||||
declare module.exports: $Exports<'if-env/test/if-env.test'>;
|
||||
}
|
||||
59
flow-typed/npm/winston-daily-rotate-file_vx.x.x.js
vendored
Normal file
59
flow-typed/npm/winston-daily-rotate-file_vx.x.x.js
vendored
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
// flow-typed signature: cc8b2bdf777b8fdb044e1adb66677590
|
||||
// flow-typed version: <<STUB>>/winston-daily-rotate-file_v^4.5.0/flow_v0.129.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'winston-daily-rotate-file'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'winston-daily-rotate-file' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'winston-daily-rotate-file/daily-rotate-file' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'winston-daily-rotate-file/test/memory-stream' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'winston-daily-rotate-file/test/random-string' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'winston-daily-rotate-file/test/transport-tests' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'winston-daily-rotate-file/daily-rotate-file.js' {
|
||||
declare module.exports: $Exports<'winston-daily-rotate-file/daily-rotate-file'>;
|
||||
}
|
||||
declare module 'winston-daily-rotate-file/index' {
|
||||
declare module.exports: $Exports<'winston-daily-rotate-file'>;
|
||||
}
|
||||
declare module 'winston-daily-rotate-file/index.js' {
|
||||
declare module.exports: $Exports<'winston-daily-rotate-file'>;
|
||||
}
|
||||
declare module 'winston-daily-rotate-file/test/memory-stream.js' {
|
||||
declare module.exports: $Exports<'winston-daily-rotate-file/test/memory-stream'>;
|
||||
}
|
||||
declare module 'winston-daily-rotate-file/test/random-string.js' {
|
||||
declare module.exports: $Exports<'winston-daily-rotate-file/test/random-string'>;
|
||||
}
|
||||
declare module 'winston-daily-rotate-file/test/transport-tests.js' {
|
||||
declare module.exports: $Exports<'winston-daily-rotate-file/test/transport-tests'>;
|
||||
}
|
||||
55
flow-typed/npm/winston-transport_vx.x.x.js
vendored
Normal file
55
flow-typed/npm/winston-transport_vx.x.x.js
vendored
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
// flow-typed signature: fec78d94cbeee8eed1cb2c8cf3e3d9ad
|
||||
// flow-typed version: <<STUB>>/winston-transport_v^4.4.0/flow_v0.129.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'winston-transport'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'winston-transport' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'winston-transport/dist' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'winston-transport/dist/legacy' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'winston-transport/legacy' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'winston-transport/dist/index' {
|
||||
declare module.exports: $Exports<'winston-transport/dist'>;
|
||||
}
|
||||
declare module 'winston-transport/dist/index.js' {
|
||||
declare module.exports: $Exports<'winston-transport/dist'>;
|
||||
}
|
||||
declare module 'winston-transport/dist/legacy.js' {
|
||||
declare module.exports: $Exports<'winston-transport/dist/legacy'>;
|
||||
}
|
||||
declare module 'winston-transport/index' {
|
||||
declare module.exports: $Exports<'winston-transport'>;
|
||||
}
|
||||
declare module 'winston-transport/index.js' {
|
||||
declare module.exports: $Exports<'winston-transport'>;
|
||||
}
|
||||
declare module 'winston-transport/legacy.js' {
|
||||
declare module.exports: $Exports<'winston-transport/legacy'>;
|
||||
}
|
||||
156
flow-typed/npm/winston_v3.x.x.js
vendored
Normal file
156
flow-typed/npm/winston_v3.x.x.js
vendored
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
// flow-typed signature: 71d87edbd93b4e1027b7e590a8e97a21
|
||||
// flow-typed version: 097f6f2b81/winston_v3.x.x/flow_>=v0.104.x
|
||||
|
||||
declare type $winstonLevels = { [string]: number, ... };
|
||||
|
||||
declare type $winstonNpmLogLevels = {
|
||||
error: number,
|
||||
warn: number,
|
||||
info: number,
|
||||
verbose: number,
|
||||
debug: number,
|
||||
silly: number,
|
||||
...
|
||||
};
|
||||
|
||||
declare type $winstonInfo<T: $winstonLevels> = {
|
||||
[optionName: string]: mixed,
|
||||
level: $Keys<T>,
|
||||
message: string,
|
||||
...
|
||||
};
|
||||
|
||||
declare type $winstonFormat = Object;
|
||||
|
||||
declare type $winstonFileTransportConfig<T: $winstonLevels> = {
|
||||
filename: string,
|
||||
level?: $Keys<T>,
|
||||
...
|
||||
};
|
||||
|
||||
declare class $winstonTransport {
|
||||
level?: string;
|
||||
silent?: boolean;
|
||||
}
|
||||
|
||||
declare class $winstonFileTransport<T> extends $winstonTransport {
|
||||
constructor($winstonFileTransportConfig<T>): $winstonFileTransport<T>;
|
||||
}
|
||||
|
||||
declare type $winstonConsoleTransportConfig<T: $winstonLevels> = { level?: $Keys<T>, ... };
|
||||
|
||||
declare class $winstonConsoleTransport<T> extends $winstonTransport {
|
||||
constructor(
|
||||
config?: $winstonConsoleTransportConfig<T>
|
||||
): $winstonConsoleTransport<T>;
|
||||
}
|
||||
|
||||
declare type $winstonLoggerConfig<T: $winstonLevels> = {
|
||||
exitOnError?: boolean,
|
||||
format?: $winstonFormat,
|
||||
level?: $Keys<T>,
|
||||
levels?: T,
|
||||
transports?: Array<$winstonTransport>,
|
||||
...
|
||||
};
|
||||
|
||||
declare type $winstonLogger<T: $winstonLevels> = {
|
||||
[$Keys<T>]: (message: string, meta?: Object) => $winstonLogger<T>,
|
||||
add: $winstonTransport => $winstonLogger<T>,
|
||||
remove: $winstonTransport => $winstonLogger<T>,
|
||||
clear: () => $winstonLogger<T>,
|
||||
close: () => $winstonLogger<T>,
|
||||
configure: ($winstonLoggerConfig<T>) => void,
|
||||
log: (message: $winstonInfo<T>) => $winstonLogger<T>,
|
||||
startTimer: () => $winstonProfiler<T>,
|
||||
profile: (name: string, info?: $Shape<$winstonInfo<T>>) => void,
|
||||
...
|
||||
};
|
||||
|
||||
declare type $winstonConfigSubModule = { npm: () => $winstonNpmLogLevels, ... };
|
||||
|
||||
declare type $winstonFormatJsonOptions = {
|
||||
replacer?: (key: string, value: mixed) => mixed,
|
||||
space?: number,
|
||||
stable?: boolean,
|
||||
...
|
||||
};
|
||||
|
||||
declare type $winstonFormatPrettyPrintOptions = {|
|
||||
depth?: number,
|
||||
colorize?: boolean,
|
||||
|};
|
||||
|
||||
declare type $winstonFormatErrorsOptions = {|
|
||||
stack?: boolean,
|
||||
|};
|
||||
|
||||
declare type $winstonFormatSubModule = {
|
||||
<T: $winstonLevels>((info: $winstonInfo<T>) => $winstonInfo<T>): () => $winstonFormat,
|
||||
combine: (...args: Array<$winstonFormat>) => $winstonFormat,
|
||||
json: (options?: $winstonFormatJsonOptions) => $winstonFormat,
|
||||
label: (config?: Object) => $winstonFormat,
|
||||
metadata: () => $winstonFormat,
|
||||
prettyPrint: (options?: $winstonFormatPrettyPrintOptions) => $winstonFormat,
|
||||
simple: () => $winstonFormat,
|
||||
splat: () => $winstonFormat,
|
||||
timestamp: (?{
|
||||
alias?: string,
|
||||
format?: string | () => string,
|
||||
...
|
||||
}) => $winstonFormat,
|
||||
colorize: () => $winstonFormat,
|
||||
logstash: () => $winstonFormat,
|
||||
printf: ((args: $winstonInfo<Object>) => string) => $winstonFormat,
|
||||
errors: (options?: $winstonFormatErrorsOptions) => $winstonFormat,
|
||||
...
|
||||
};
|
||||
|
||||
declare type $winstonDefaultLogger = $winstonLogger<$winstonNpmLogLevels>;
|
||||
|
||||
declare class $winstonContainer<T> {
|
||||
constructor(config?: $winstonLoggerConfig<T>): $winstonContainer<T>;
|
||||
add(loggerId: string, config?: $winstonLoggerConfig<T>): $winstonLogger<T>;
|
||||
get(loggerId: string): $winstonLogger<T>;
|
||||
has(loggerId: string): boolean;
|
||||
close(loggerId?: string): void;
|
||||
}
|
||||
|
||||
declare interface $winstonProfiler<T: $winstonNpmLogLevels> {
|
||||
logger: $winstonLogger<T>;
|
||||
start: Date;
|
||||
done(info?: $Shape<$winstonInfo<T>>): void;
|
||||
};
|
||||
|
||||
declare module "winston" {
|
||||
declare export type Levels = $winstonLevels;
|
||||
declare export type NpmLogLevels = $winstonNpmLogLevels;
|
||||
declare export type Info<T: Levels > = $winstonInfo<T>;
|
||||
declare export type Format = $winstonFormat;
|
||||
declare export type FileTransportConfig<T: Levels> = $winstonFileTransportConfig<T>;
|
||||
declare export type Transport = $winstonTransport;
|
||||
declare export type FileTransport<T: Levels> = $winstonFileTransport<T>;
|
||||
declare export type ConsoleTransportConfig<T: Levels> = $winstonConsoleTransportConfig<T>;
|
||||
declare export type ConsoleTransport<T: Levels> = $winstonConsoleTransport<T>;
|
||||
declare export type LoggerConfig<T: Levels> = $winstonLoggerConfig<T>;
|
||||
declare export type Logger<T: Levels> = $winstonLogger<T>;
|
||||
declare export type ConfigSubModule = $winstonConfigSubModule;
|
||||
declare export type FormatSubModule = $winstonFormatSubModule;
|
||||
declare export type DefaultLogger = $winstonDefaultLogger;
|
||||
declare export type Container<T: Levels> = $winstonContainer<T>;
|
||||
declare export type Profiler<T: Levels> = $winstonProfiler<T>;
|
||||
|
||||
declare module.exports: {
|
||||
...$Exact<$winstonDefaultLogger>,
|
||||
format: $winstonFormatSubModule,
|
||||
transports: {
|
||||
Console: typeof $winstonConsoleTransport,
|
||||
File: typeof $winstonFileTransport,
|
||||
...
|
||||
},
|
||||
createLogger: <T>($winstonLoggerConfig<T>) => $winstonLogger<T>,
|
||||
Container: typeof $winstonContainer,
|
||||
loggers: $winstonContainer<*>,
|
||||
...
|
||||
};
|
||||
}
|
||||
117
package-lock.json
generated
117
package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "TiddlyGit",
|
||||
"version": "0.0.1",
|
||||
"version": "0.1.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
@ -4646,6 +4646,25 @@
|
|||
"babel-types": "^6.24.1"
|
||||
}
|
||||
},
|
||||
"babel-polyfill": {
|
||||
"version": "6.26.0",
|
||||
"resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz",
|
||||
"integrity": "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"babel-runtime": "^6.26.0",
|
||||
"core-js": "^2.5.0",
|
||||
"regenerator-runtime": "^0.10.5"
|
||||
},
|
||||
"dependencies": {
|
||||
"regenerator-runtime": {
|
||||
"version": "0.10.5",
|
||||
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz",
|
||||
"integrity": "sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=",
|
||||
"dev": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"babel-preset-env": {
|
||||
"version": "1.7.0",
|
||||
"resolved": "https://registry.npm.taobao.org/babel-preset-env/download/babel-preset-env-1.7.0.tgz",
|
||||
|
|
@ -9084,6 +9103,21 @@
|
|||
"resolved": "https://registry.npm.taobao.org/etag/download/etag-1.8.1.tgz",
|
||||
"integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
|
||||
},
|
||||
"event-stream": {
|
||||
"version": "3.3.4",
|
||||
"resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz",
|
||||
"integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"duplexer": "~0.1.1",
|
||||
"from": "~0",
|
||||
"map-stream": "~0.1.0",
|
||||
"pause-stream": "0.0.11",
|
||||
"split": "0.3",
|
||||
"stream-combiner": "~0.0.4",
|
||||
"through": "~2.3.1"
|
||||
}
|
||||
},
|
||||
"eventemitter3": {
|
||||
"version": "4.0.4",
|
||||
"resolved": "https://registry.npm.taobao.org/eventemitter3/download/eventemitter3-4.0.4.tgz",
|
||||
|
|
@ -10179,6 +10213,12 @@
|
|||
"resolved": "https://registry.npm.taobao.org/fresh/download/fresh-0.5.2.tgz",
|
||||
"integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac="
|
||||
},
|
||||
"from": {
|
||||
"version": "0.1.7",
|
||||
"resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz",
|
||||
"integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=",
|
||||
"dev": true
|
||||
},
|
||||
"from2": {
|
||||
"version": "2.3.0",
|
||||
"resolved": "https://registry.npm.taobao.org/from2/download/from2-2.3.0.tgz",
|
||||
|
|
@ -11137,6 +11177,15 @@
|
|||
"resolved": "https://registry.npm.taobao.org/if-async/download/if-async-3.7.4.tgz",
|
||||
"integrity": "sha1-VYaN6wCT08Z79xZudFNT+5vLIaI="
|
||||
},
|
||||
"if-env": {
|
||||
"version": "1.0.4",
|
||||
"resolved": "https://registry.npmjs.org/if-env/-/if-env-1.0.4.tgz",
|
||||
"integrity": "sha1-iytr0wivhqOhm7JzQmdhCFEEh4s=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"npm-run-all": "1.4.0"
|
||||
}
|
||||
},
|
||||
"iferr": {
|
||||
"version": "0.1.5",
|
||||
"resolved": "https://registry.npm.taobao.org/iferr/download/iferr-0.1.5.tgz",
|
||||
|
|
@ -13046,6 +13095,12 @@
|
|||
"resolved": "https://registry.npm.taobao.org/map-cache/download/map-cache-0.2.2.tgz",
|
||||
"integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8="
|
||||
},
|
||||
"map-stream": {
|
||||
"version": "0.1.0",
|
||||
"resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz",
|
||||
"integrity": "sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=",
|
||||
"dev": true
|
||||
},
|
||||
"map-visit": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npm.taobao.org/map-visit/download/map-visit-1.0.0.tgz",
|
||||
|
|
@ -13865,6 +13920,30 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"npm-run-all": {
|
||||
"version": "1.4.0",
|
||||
"resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-1.4.0.tgz",
|
||||
"integrity": "sha1-pGm7n+q+W/OqmRaDO69ndlguiUg=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"babel-polyfill": "^6.2.0",
|
||||
"minimatch": "^3.0.0",
|
||||
"ps-tree": "^1.0.1",
|
||||
"shell-quote": "^1.4.3",
|
||||
"which": "^1.2.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"which": {
|
||||
"version": "1.3.1",
|
||||
"resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
|
||||
"integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"isexe": "^2.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"npm-run-path": {
|
||||
"version": "2.0.2",
|
||||
"resolved": "https://registry.npm.taobao.org/npm-run-path/download/npm-run-path-2.0.2.tgz",
|
||||
|
|
@ -14681,6 +14760,15 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"pause-stream": {
|
||||
"version": "0.0.11",
|
||||
"resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz",
|
||||
"integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"through": "~2.3"
|
||||
}
|
||||
},
|
||||
"pbkdf2": {
|
||||
"version": "3.1.1",
|
||||
"resolved": "https://registry.npm.taobao.org/pbkdf2/download/pbkdf2-3.1.1.tgz?cache=0&sync_timestamp=1591275785449&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpbkdf2%2Fdownload%2Fpbkdf2-3.1.1.tgz",
|
||||
|
|
@ -16089,6 +16177,15 @@
|
|||
"resolved": "https://registry.npm.taobao.org/prr/download/prr-1.0.1.tgz",
|
||||
"integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY="
|
||||
},
|
||||
"ps-tree": {
|
||||
"version": "1.2.0",
|
||||
"resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz",
|
||||
"integrity": "sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"event-stream": "=3.3.4"
|
||||
}
|
||||
},
|
||||
"psl": {
|
||||
"version": "1.8.0",
|
||||
"resolved": "https://registry.npm.taobao.org/psl/download/psl-1.8.0.tgz",
|
||||
|
|
@ -18334,6 +18431,15 @@
|
|||
"wbuf": "^1.7.3"
|
||||
}
|
||||
},
|
||||
"split": {
|
||||
"version": "0.3.3",
|
||||
"resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz",
|
||||
"integrity": "sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"through": "2"
|
||||
}
|
||||
},
|
||||
"split-string": {
|
||||
"version": "3.1.0",
|
||||
"resolved": "https://registry.npm.taobao.org/split-string/download/split-string-3.1.0.tgz",
|
||||
|
|
@ -18460,6 +18566,15 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"stream-combiner": {
|
||||
"version": "0.0.4",
|
||||
"resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz",
|
||||
"integrity": "sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"duplexer": "~0.1.1"
|
||||
}
|
||||
},
|
||||
"stream-each": {
|
||||
"version": "1.2.3",
|
||||
"resolved": "https://registry.npm.taobao.org/stream-each/download/stream-each-1.2.3.tgz",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "TiddlyGit",
|
||||
"description": "Customizable personal knowledge-base with Github as unlimited storage and blogging platform.",
|
||||
"version": "0.a.1",
|
||||
"version": "0.1.0",
|
||||
"main": "public/electron.js",
|
||||
"scripts": {
|
||||
"electron-dev": "npm run clean:dev && concurrently \"cross-env BROWSER=none npm run start\" \"wait-on http://localhost:3000 && electron .\" -k",
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
"lint": "eslint ./public ./src --ext js",
|
||||
"lint:fix": "eslint ./public ./src --ext js --fix",
|
||||
"flow-typed": "rimraf flow-typed/npm && flow-typed install --overwrite || true",
|
||||
"postinstall": "npx patch-package && electron-builder install-app-deps && npm run flow-typed"
|
||||
"postinstall": "npx patch-package && electron-builder install-app-deps && if-env CI=true && echo \"skip flow-typed\" || npm run flow-typed"
|
||||
},
|
||||
"repository": "https://github.com/tiddly-gittly/TiddlyGit-Desktop",
|
||||
"author": "Lin Onetwo<linonetwo012@gmail.com>, Quang Lam <quang.lam2807@gmail.com>",
|
||||
|
|
@ -101,6 +101,7 @@
|
|||
"eslint-plugin-unicorn": "21.0.0",
|
||||
"flow-bin": "0.129.0",
|
||||
"flow-typed": "2.6.2",
|
||||
"if-env": "^1.0.4",
|
||||
"patch-package": "6.2.2",
|
||||
"rescript-disable-eslint": "1.0.2",
|
||||
"wait-on": "5.1.0"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue