Skip to content

Commit

Permalink
Use lerna for bootstraping, testing, and linting
Browse files Browse the repository at this point in the history
  • Loading branch information
lorensr committed Nov 1, 2021
1 parent 2e96360 commit 1de470d
Show file tree
Hide file tree
Showing 9 changed files with 12,968 additions and 4,418 deletions.
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

17 changes: 0 additions & 17 deletions .eslintrc.json

This file was deleted.

5 changes: 3 additions & 2 deletions activities-sticky-queues/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "temporal-hello-world",
"name": "activities-sticky-queues",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc --build",
"build.watch": "tsc --build --watch",
"start": "ts-node src/worker.ts",
"start.watch": "nodemon src/worker.ts",
"workflow": "ts-node src/execute-workflow.ts"
"workflow": "ts-node src/execute-workflow.ts",
"lint": "eslint ."
},
"nodemonConfig": {
"execMap": {
Expand Down
1 change: 1 addition & 0 deletions activities-sticky-queues/src/activities.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import * as fs from 'fs/promises';
import { createHash } from 'crypto';
import { Context } from '@temporalio/activity';
Expand Down
5 changes: 3 additions & 2 deletions cron-workflows/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "temporal-hello-world",
"name": "cron-workflows",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc --build",
"build.watch": "tsc --build --watch",
"start": "ts-node src/worker.ts",
"start.watch": "nodemon src/worker.ts",
"workflow": "ts-node src/execute-workflow.ts"
"workflow": "ts-node src/execute-workflow.ts",
"lint": "eslint ."
},
"nodemonConfig": {
"execMap": {
Expand Down
3 changes: 2 additions & 1 deletion fetch-esm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"build.watch": "tsc --build --watch",
"start": "node --loader ts-node/esm src/worker.ts",
"start.watch": "nodemon src/worker.ts",
"workflow": "node --loader ts-node/esm src/execute-workflow.ts"
"workflow": "node --loader ts-node/esm src/execute-workflow.ts",
"lint": "eslint ."
},
"nodemonConfig": {
"execMap": {
Expand Down
4 changes: 4 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"packages": ["*"],
"version": "0.0.0"
}
Loading

0 comments on commit 1de470d

Please sign in to comment.