Skip to content

Commit

Permalink
build: build all
Browse files Browse the repository at this point in the history
  • Loading branch information
EnixCoda committed Sep 23, 2024
1 parent 2c343d4 commit a0e41ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ update-icons:
build:
yarn build

build-all:
yarn build:all

test:
yarn test

Expand All @@ -34,14 +37,14 @@ compress-source:
zip -r dist/Gitako-$(FULL_VERSION)-source.zip vscode-icons/icons

release:
$(MAKE) build
$(MAKE) build-all
$(MAKE) test
$(MAKE) upload-for-analytics
$(MAKE) compress
$(MAKE) compress-source

release-dry-run:
$(MAKE) build
$(MAKE) build-all
$(MAKE) test
$(MAKE) compress
$(MAKE) compress-source
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"postinstall": "patch-package",
"postversion": "sh scripts/post-version.sh",
"build": "VERSION=v$(node scripts/get-version.js) NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=production webpack",
"build:all": "GITAKO_TARGET= yarn run build",
"build:analyze": "ANALYZE= yarn run build",
"test": "NODE_ENV=test jest --config __tests__/jest.puppeteer.config.js",
"test:unit": "NODE_ENV=test jest --config jest.config.js"
Expand Down

0 comments on commit a0e41ae

Please sign in to comment.