Skip to content

Commit

Permalink
Merging upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
seebeen committed Sep 21, 2024
2 parents 2490157 + 3a14aa1 commit 3c56626
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 25 deletions.
2 changes: 1 addition & 1 deletion lib/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export async function publish(
const zipResult = config.withAssets
? await execa(
zipCommand,
['-qr', path.join(releaseDir, `assets.zip`), '.'],
['-qjr', path.join(releaseDir, `assets.zip`), assetDir],
{
cwd: assetDir,
timeout: 30 * 1000,
Expand Down
20 changes: 0 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"type": "module",
"engines": {
"node": ">= 18"
"node": ">=20.8.1"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -46,7 +46,6 @@
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/preset-env": "7.24.7",
"@types/adm-zip": "^0.5.5",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.12",
"@types/node": "20.14.7",
Expand All @@ -55,7 +54,6 @@
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"adm-zip": "^0.5.16",
"babel-jest": "29.7.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
Expand Down
2 changes: 1 addition & 1 deletion test/3-publish-plugin.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ afterAll(async () => {
});

describe('Publish step', () => {
it('Should zip a complete plugin properly', async () => {
it('Should package a complete plugin', async () => {
await prepare(pluginConfig, contexts.publishContext);
await publish(pluginConfig, contexts.publishContext);

Expand Down

0 comments on commit 3c56626

Please sign in to comment.