-
-
Notifications
You must be signed in to change notification settings - Fork 531
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/pnpm-support
- Loading branch information
Showing
176 changed files
with
7,370 additions
and
4,943 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
version: 2.1 | ||
|
||
orbs: | ||
node: electronjs/node@1.4.1 | ||
node: electronjs/node@2.2.1 | ||
|
||
commands: | ||
install: | ||
|
@@ -113,8 +113,8 @@ jobs: | |
name: Windows Setup | ||
shell: bash | ||
command: | | ||
choco install --no-progress -y wixtoolset | ||
echo 'export PATH=$PATH:"/C/Program Files (x86)/WiX Toolset v3.11/bin"' >> "$BASH_ENV" | ||
choco install --no-progress -y wixtoolset --version=3.14.0 | ||
echo 'export PATH=$PATH:"/C/Program Files (x86)/WiX Toolset v3.14/bin"' >> "$BASH_ENV" | ||
cd 'C:\Program Files\nodejs\node_modules\npm\node_modules\@npmcli\run-script' | ||
npm install [email protected] | ||
- when: | ||
|
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 |
---|---|---|
|
@@ -6,3 +6,4 @@ packages/*/*/doc | |
packages/*/*/index.ts | ||
packages/**/bad.js | ||
tmpl | ||
packages/api/core/helper/dynamic-import.js |
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,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
interval: 'monthly' |
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
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
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
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.DS_Store | ||
.nyc_output | ||
*.lcov | ||
/coverage | ||
|
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
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
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json", | ||
"useWorkspaces": true, | ||
"version": "6.4.2", | ||
"version": "7.4.0", | ||
"npmClient": "yarn" | ||
} |
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 |
---|---|---|
|
@@ -4,15 +4,15 @@ | |
"private": true, | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">= 14.17.5" | ||
"node": ">= 16.4.0" | ||
}, | ||
"scripts": { | ||
"clean": "rimraf dist && lerna exec -- rimraf dist tsconfig.tsbuildinfo", | ||
"build": "tsc -b packages", | ||
"build:watch": "yarn build --watch", | ||
"postbuild": "ts-node tools/test-dist", | ||
"docs": "yarn build && yarn docs:generate", | ||
"docs:generate": "yarn docs:plugin && node --max-old-space-size=8192 -r ts-node/register ./tools/gen-docs.ts", | ||
"docs:generate": "yarn docs:plugin && node --max-old-space-size=16384 -r ts-node/register ./tools/gen-docs.ts", | ||
"docs:plugin": "cd ./tools/doc-plugin && yarn build", | ||
"lerna:publish": "lerna publish --force-publish --conventional-commits --no-changelog --exact", | ||
"lint:js": "prettier --check . && eslint .", | ||
|
@@ -23,22 +23,25 @@ | |
"lint:fix": "prettier --write .", | ||
"link:prepare": "lerna exec -- node ../../../tools/silent.js yarn link --silent --no-bin-links --link-folder ../../../.links", | ||
"link:remove": "lerna exec -- node ../../../tools/silent.js yarn unlink --silent --no-bin-links --link-folder ../../../.links", | ||
"test": "xvfb-maybe cross-env NODE_ENV=test TS_NODE_PROJECT='./tsconfig.test.json' TS_NODE_FILES=1 mocha", | ||
"test": "npm run test:clear && xvfb-maybe cross-env NODE_ENV=test TS_NODE_PROJECT='./tsconfig.test.json' TS_NODE_FILES=1 mocha", | ||
"test:fast": "npm run test -- --suite=fast", | ||
"test:slow": "npm run test -- --suite=slow", | ||
"test:clear": "ts-node tools/test-clear", | ||
"postinstall": "rimraf node_modules/.bin/*.ps1 && ts-node ./tools/gen-tsconfigs.ts && ts-node ./tools/gen-ts-glue.ts", | ||
"prepare": "husky install", | ||
"preversion": "yarn build" | ||
}, | ||
"dependencies": { | ||
"@aws-sdk/abort-controller": "^3.29.0", | ||
"@aws-sdk/client-s3": "^3.28.0", | ||
"@aws-sdk/client-s3": "^3.461.0", | ||
"@aws-sdk/lib-storage": "^3.28.0", | ||
"@aws-sdk/types": "^3.25.0", | ||
"@doyensec/electronegativity": "^1.9.1", | ||
"@electron/get": "^2.0.0", | ||
"@electron/get": "^3.0.0", | ||
"@electron/osx-sign": "^1.0.5", | ||
"@electron/packager": "^18.3.1", | ||
"@electron/rebuild": "^3.2.10", | ||
"@google-cloud/storage": "^7.5.0", | ||
"@malept/cross-spawn-promise": "^2.0.0", | ||
"@octokit/core": "^3.2.4", | ||
"@octokit/plugin-retry": "^3.0.9", | ||
|
@@ -49,7 +52,6 @@ | |
"cross-spawn": "^7.0.3", | ||
"cross-zip": "^4.0.0", | ||
"debug": "^4.3.1", | ||
"electron-packager": "^17.1.2", | ||
"express": "^4.17.1", | ||
"express-ws": "^5.0.2", | ||
"fast-glob": "^3.2.7", | ||
|
@@ -60,6 +62,7 @@ | |
"got": "^11.8.5", | ||
"html-webpack-plugin": "^5.5.3", | ||
"interpret": "^3.1.1", | ||
"listr2": "^7.0.2", | ||
"lodash": "^4.17.20", | ||
"log-symbols": "^4.0.0", | ||
"mime-types": "^2.1.25", | ||
|
@@ -73,7 +76,7 @@ | |
"source-map-support": "^0.5.13", | ||
"sudo-prompt": "^9.1.1", | ||
"username": "^5.1.0", | ||
"vite": "^4.1.1", | ||
"vite": "^5.0.12", | ||
"webpack": "^5.69.1", | ||
"webpack-dev-server": "^4.0.0", | ||
"webpack-merge": "^5.7.3", | ||
|
@@ -84,7 +87,7 @@ | |
}, | ||
"devDependencies": { | ||
"@electron/fuses": ">=1.0.0", | ||
"@electron/lint-roller": "^1.6.0", | ||
"@electron/lint-roller": "1.10.1", | ||
"@knodes/typedoc-plugin-monorepo-readmes": "0.22.5", | ||
"@malept/eslint-config": "^2.0.0", | ||
"@types/chai": "^4.2.12", | ||
|
@@ -96,6 +99,7 @@ | |
"@types/fetch-mock": "^7.3.1", | ||
"@types/fs-extra": "^9.0.6", | ||
"@types/interpret": "^1.1.1", | ||
"@types/keyv": "^3.1.4", | ||
"@types/listr": "^0.14.2", | ||
"@types/lodash": "^4.14.166", | ||
"@types/mime-types": "^2.1.0", | ||
|
@@ -128,9 +132,8 @@ | |
"generate-changelog": "^1.8.0", | ||
"husky": "^7.0.1", | ||
"inquirer": "^8.0.0", | ||
"lerna": "^6.0.1", | ||
"lerna": "^6.6.2", | ||
"lint-staged": "^12.1.7", | ||
"listr2": "^5.0.3", | ||
"minimist": "^1.2.6", | ||
"mocha": "^9.0.1", | ||
"mocha-junit-reporter": "^2.2.1", | ||
|
@@ -155,8 +158,8 @@ | |
"electron-installer-redhat": "^3.2.0", | ||
"electron-installer-snap": "^5.2.0", | ||
"electron-windows-store": "^2.1.0", | ||
"electron-winstaller": "^5.0.0", | ||
"electron-wix-msi": "^5.0.0", | ||
"electron-winstaller": "^5.3.0", | ||
"electron-wix-msi": "^5.1.3", | ||
"macos-alias": "^0.2.11" | ||
}, | ||
"peerDependencies": { | ||
|
@@ -173,6 +176,7 @@ | |
"prettier": { | ||
"singleQuote": true | ||
}, | ||
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447", | ||
"workspaces": { | ||
"packages": [ | ||
"packages/api/*", | ||
|
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
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
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
Oops, something went wrong.