Skip to content

Commit 643a1c9

Browse files
committedDec 17, 2021
feat(build): init support for development builds
1 parent 20d5f05 commit 643a1c9

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed
 

‎Makefile

+8-8
Original file line numberDiff line numberDiff line change
@@ -124,31 +124,31 @@ packages-lint-fix: ##@1 packages run eslint on all packages with a fix option
124124
@yarn eslint "./packages/*/{src,tests}/**/*.{js,ts,tsx}" --fix
125125

126126
package-test-cover-%: ##@1 packages run tests for a package with code coverage
127-
@yarn jest -c ./packages/jest.config.js --rootDir . --coverage ./packages/${*}/tests
127+
@export BABEL_ENV=development; yarn jest -c ./packages/jest.config.js --rootDir . --coverage ./packages/${*}/tests
128128

129129
package-test-%: ##@1 packages run tests for a package
130-
@yarn jest -c ./packages/jest.config.js --rootDir . ./packages/${*}/tests
130+
@export BABEL_ENV=development; yarn jest -c ./packages/jest.config.js --rootDir . ./packages/${*}/tests
131131

132132
package-watch-test-%: ##@1 packages run tests for a package and watch for changes
133-
@yarn jest -c ./packages/jest.config.js --rootDir . ./packages/${*}/tests --watch
133+
@export BABEL_ENV=development; yarn jest -c ./packages/jest.config.js --rootDir . ./packages/${*}/tests --watch
134134

135135
package-update-test-%: ##@1 packages run tests for a package and update its snapshots
136-
@yarn jest -c ./packages/jest.config.js --rootDir . ./packages/${*}/tests -u
136+
@export BABEL_ENV=development; yarn jest -c ./packages/jest.config.js --rootDir . ./packages/${*}/tests -u
137137

138138
package-watch-test-%: ##@1 packages run tests for a package and watch for changes
139-
@yarn jest -c ./packages/jest.config.js --rootDir . ./packages/${*}/tests --watch
139+
@export BABEL_ENV=development; yarn jest -c ./packages/jest.config.js --rootDir . ./packages/${*}/tests --watch
140140

141141
packages-test: ##@1 packages run tests for all packages
142142
@echo "${YELLOW}Running test suites for all packages${RESET}"
143-
@yarn jest -c ./packages/jest.config.js --rootDir . ./packages/*/tests
143+
@export BABEL_ENV=development; yarn jest -c ./packages/jest.config.js --rootDir . ./packages/*/tests
144144

145145
packages-watch-test: ##@1 packages run tests for all packages and watch for changes
146146
@echo "${YELLOW}Running test suites watcher for all packages${RESET}"
147-
@yarn jest -c ./packages/jest.config.js --rootDir . ./packages/*/tests --watch
147+
@export BABEL_ENV=development; yarn jest -c ./packages/jest.config.js --rootDir . ./packages/*/tests --watch
148148

149149
packages-test-cover: ##@1 packages run tests for all packages with code coverage
150150
@echo "${YELLOW}Running test suites coverage for all packages${RESET}"
151-
@yarn jest -c ./packages/jest.config.js --rootDir . --coverage ./packages/*/tests
151+
@export BABEL_ENV=development; yarn jest -c ./packages/jest.config.js --rootDir . --coverage ./packages/*/tests
152152

153153
packages-types: ##@1 packages build all package types
154154
@echo "${YELLOW}Building TypeScript types for all packages${RESET}"

‎babel.config.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
module.exports = {
22
presets: [
33
['@babel/preset-env', { loose: true }],
4-
['@babel/preset-react', { runtime: 'automatic' }],
4+
['@babel/preset-react', {
5+
development: process.env.BABEL_ENV === "development",
6+
runtime: 'automatic'
7+
}],
58
'@babel/preset-typescript',
69
],
710
}

0 commit comments

Comments
 (0)
Please sign in to comment.