Skip to content

Commit

Permalink
Added global commands for npm scripts, added note about OTel future s…
Browse files Browse the repository at this point in the history
…upport
  • Loading branch information
oskardudycz committed Feb 13, 2024
1 parent 3451381 commit 28a6eb3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ We'll see, but for sure, I'd like to have the following:
- building blocks for integration and running distributed processes,
- GraphQL API for event stores,
- Full stack development helpers with Next.js or HTMX,
- built-in open telemetry,
- running it serverless or on the web with SQLite,
- streaming data through HTTP API (and enabling integration scenarios through it).
- defining event transformations and projections with WebAssembly,
Expand Down
14 changes: 13 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,19 @@
"description": "Emmett - Event Sourcing development made simple",
"scripts": {
"setup": "cat .nvmrc | nvm install; nvm use",
"version": "npm version $npm_package_version --workspaces && git add **/package.json",
"build": "npm run build --ws",
"build:ts": "npm run build:ts --ws",
"build:ts:watch": "npm run build:ts:watch --ws",
"lint": "npm run lint --ws",
"fix": "npm run fix --ws",
"test": "npm run test --ws",
"test:unit": "npm run test:unit --ws",
"test:int": "npm run test:int --ws",
"test:e2e": "npm run test:e2e --ws",
"test:watch": "npm run test:watch --ws",
"test:unit:watch": "npm run test:unit:watch --ws",
"test:int:watch": "npm run test:int:watch --ws",
"test:e2e:watch": "npm run test:e2e:watch --ws",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
Expand Down

0 comments on commit 28a6eb3

Please sign in to comment.