@@ -124,31 +124,31 @@ packages-lint-fix: ##@1 packages run eslint on all packages with a fix option
124
124
@yarn eslint " ./packages/*/{src,tests}/**/*.{js,ts,tsx}" --fix
125
125
126
126
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
128
128
129
129
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
131
131
132
132
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
134
134
135
135
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
137
137
138
138
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
140
140
141
141
packages-test : # #@1 packages run tests for all packages
142
142
@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
144
144
145
145
packages-watch-test : # #@1 packages run tests for all packages and watch for changes
146
146
@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
148
148
149
149
packages-test-cover : # #@1 packages run tests for all packages with code coverage
150
150
@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
152
152
153
153
packages-types : # #@1 packages build all package types
154
154
@echo " ${YELLOW} Building TypeScript types for all packages${RESET} "
0 commit comments