Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions Makefile
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should the github actions be also updated to use this definition? It would avoid the drifts

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
WORKDIR = $(shell pwd)

LIBRARIES = $(shell find packages packages_generated -mindepth 1 -maxdepth 1 -type d)

build:
pnpm turbo build

install-dependencies:
pnpm install

format:
pnpm run format

format-check:
pnpm run format:check

typing:
pnpm turbo typecheck

lint:
pnpm turbo lint

test:
pnpm turbo test

test-coverage:
pnpm run test:coverage

doc:
pnpm run doc

prebuild:
pnpm run prebuild

generate-alias:
pnpm run generateAlias

generate-packages:
pnpm run generatePackages

generate-global-sdk-package:
pnpm run generateGlobalSdkPackage

publish: install-dependencies
pnpm run build
pnpm lerna changed
pnpm exec lerna publish -y --registry $(NPM_PUBLISH_REGISTRY) --ignore-scripts
Loading