-
Notifications
You must be signed in to change notification settings - Fork 136
/
Makefile
85 lines (63 loc) · 2.79 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
BIN := ./node_modules/.bin
yarn_run := yarn run -T browser
help: ## Lists all available make tasks and some short documentation about them
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-24s\033[0m %s\n", $$1, $$2}'
.PHONY: help
## Basic repo maintenance
# Installs npm dependencies
node_modules:
yarn install --immutable
@touch $@
build-browser: build # build dependencies
$(yarn_run) umd --no-stats
.PHONY: build-browser
build: ## Builds libraries in prod mode, and all dependencies
yarn run -T browser . build
.PHONY: build
clean: ## Clean the build directory
rm -rf dist generated
.PHONY: clean
## Test Commands
tdd: node_modules ## Runs unit tests in watch mode
$(yarn_run) test --watch
.PHONY: tdd
test-unit: node_modules ## Runs unit tests
$(yarn_run) test
.PHONY: test-unit
test-coverage: node_modules ## Runs unit tests with coverage
$(yarn_run) test --coverage --forceExit
.PHONY: test-coverage
test-qa: build-browser ## Runs all QA tests in a single command
$(yarn_run) test --runTestsByPath qa/__tests__/*.test.ts --testPathIgnorePatterns qa/__tests__/destinations.test.ts --reporters="default" --reporters="<rootDir>/qa/lib/jest-reporter.js" ${args}
.PHONY: test-coverage
test-qa-destinations: build-browser ## Runs Destination QA tests. options. DESTINATION=amplitude DEBUG=true
$(yarn_run) test --forceExit --runTestsByPath qa/__tests__/destinations.test.ts --reporters="default" --reporters="<rootDir>/qa/lib/jest-reporter.js" ${args}
.PHONY: test-coverage
test-integration: build ## Runs all integration tests in a single command
$(yarn_run) test --forceExit --runTestsByPath e2e-tests/**/*.test.ts ${args}
.PHONY: test-coverage
test-perf: build ## Runs all integration tests in a single command
$(yarn_run) test --forceExit --runTestsByPath e2e-tests/performance/*.test.ts ${args}
.PHONY: test-coverage
lint: node_modules ## Lints the source code
$(yarn_run) lint
.PHONY: lint
ci:
bash ./scripts/ci.sh
.PHONY: ci
handshake:
@echo "📡 Establishing Remote connection"
@robo --config ~/dev/src/github.com/segmentio/robofiles/development/robo.yml prod.ssh echo "✅ Connected"
.PHONY: handshake
rebuild-sources-prod: handshake ## Rebuilds all sources that are using ajs-next
@aws-okta exec prod-privileged -- ./scripts/ajs-sources.js
.PHONY: rebuild-sources-prod
rebuild-sources-stage: # Rebuilds all sources that are using ajs-next in stage
@robo --config ~/dev/src/github.com/segmentio/robofiles/development/robo.yml rebuild-all-stage
.PHONY: rebuild-sources-stage
analyze:
NODE_ENV=production $(BIN)/webpack --profile --json > stats.json && $(BIN)/webpack-bundle-analyzer --port 4200 stats.json
.PHONY: analyze
dev: ## Starts a dev server that is ready for development
yarn workspace @playground/next-playground run dev
.PHONY: dev