Skip to content

Commit 76b4f3d

Browse files
committed
Updated build folder name
1 parent 22b67ff commit 76b4f3d

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build-ja.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ jobs:
4141
uses: actions/upload-artifact@v7
4242
with:
4343
name: JA_Build_${{ steps.extract_version.outputs.version }}
44-
path: build/
44+
path: dist/

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
"build-debug": "cross-env-shell VITE_BUILD_MODE=EXTN JA_DEBUG_BUILD=1 \"tsc -b && vite build\"",
2222
"postbuild-debug": "cross-env VITE_BUILD_MODE=EXTN node post-build.cjs",
2323
"postbuild": "cross-env VITE_BUILD_MODE=EXTN node post-build.cjs",
24-
"publish-extn": "gh-pages -d build -b ja-extn",
24+
"publish-extn": "gh-pages -d dist -b ja-extn",
2525
"build-web": "cross-env-shell VITE_BUILD_MODE=WEB GENERATE_SOURCEMAP=false INLINE_RUNTIME_CHUNK=false \"tsc -b && vite build\"",
2626
"postbuild-web": "cross-env VITE_BUILD_MODE=WEB node post-build.cjs",
27-
"deploy-web": "echo app.jiraassistant.com > ./build/CNAME && gh-pages -d build",
27+
"deploy-web": "echo app.jiraassistant.com > ./dist/CNAME && gh-pages -d dist",
2828
"build-app": "cross-env-shell VITE_BUILD_MODE=APP GENERATE_SOURCEMAP=false INLINE_RUNTIME_CHUNK=false \"tsc -b && vite build\"",
2929
"postbuild-app": "cross-env VITE_BUILD_MODE=APP node post-build.cjs",
30-
"deploy-app": "gh-pages -d build --dotfiles true -b ja-app",
30+
"deploy-app": "gh-pages -d dist --dotfiles true -b ja-app",
3131
"start-plugin": "cross-env VITE_BUILD_MODE=PLUGIN PORT=6060 vite",
3232
"build-plugin": "cross-env-shell VITE_BUILD_MODE=PLUGIN PUBLIC_URL=. GENERATE_SOURCEMAP=false INLINE_RUNTIME_CHUNK=false \"tsc -b && vite build\"",
3333
"postbuild-plugin": "cross-env VITE_BUILD_MODE=PLUGIN node post-build.cjs",

post-build.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ if (buildMode === 'WEB') {
3434
postinstall: 'electron-builder install-app-deps',
3535
};
3636

37-
fs.writeJsonSync(resolveApp('build/package.json'), {
37+
fs.writeJsonSync(resolveBuildPath('package.json'), {
3838
name,
3939
version,
4040
description,

0 commit comments

Comments
 (0)