Skip to content

Commit d80b9d0

Browse files
committed
wip
1 parent 77104fb commit d80b9d0

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

packages/browser/Makefile

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ node_modules:
1313
yarn install --immutable
1414
@touch $@
1515

16-
build-browser: build # build dependencies
17-
$(yarn_run) umd --no-stats
18-
.PHONY: build-browser
19-
2016
build: ## Builds libraries in prod mode, and all dependencies
2117
yarn run -T browser . build
2218
.PHONY: build
@@ -25,21 +21,15 @@ clean: ## Clean the build directory
2521
rm -rf dist generated
2622
.PHONY: clean
2723

28-
## Test Commands
29-
30-
tdd: node_modules ## Runs unit tests in watch mode
31-
$(yarn_run) test --watch
32-
.PHONY: tdd
33-
3424
test-unit: node_modules ## Runs unit tests
3525
$(yarn_run) test
3626
.PHONY: test-unit
3727

38-
test-qa: build-browser
28+
test-qa: build
3929
COVERAGE=false $(yarn_run) test --runTestsByPath qa/__tests__/*.test.ts --testPathIgnorePatterns qa/__tests__/destinations.test.ts --reporters="default" --reporters="<rootDir>/qa/lib/jest-reporter.js" ${args}
4030
.PHONY: test-qa
4131

42-
test-qa-destinations: build-browser
32+
test-qa-destinations: build
4333
COVERAGE=false $(yarn_run) test --forceExit --runTestsByPath qa/__tests__/destinations.test.ts --reporters="default" --reporters="<rootDir>/qa/lib/jest-reporter.js" ${args}
4434
.PHONY: test-
4535

0 commit comments

Comments
 (0)