Commit before publish

This commit is contained in:
Miel Truyen 2020-01-22 11:59:38 +01:00
parent 44e7cf615c
commit 2c38b52ffb
2 changed files with 5 additions and 4 deletions

View File

@ -139,7 +139,8 @@ test-clean:
# Does not work on Windows; use "$(YARN) jest" instead # Does not work on Windows; use "$(YARN) jest" instead
test-only: test-only:
BABEL_ENV=test ./scripts/test.sh BABEL_ENV=test ./scripts/test.sh
$(MAKE) test-clean YARN jest
#$(MAKE) test-clean
test: lint test-only test: lint test-only
@ -212,7 +213,7 @@ prepublish-build: clean-lib clean-runtime-helpers
prepublish: prepublish:
$(MAKE) bootstrap-only $(MAKE) bootstrap-only
$(MAKE) prepublish-build $(MAKE) prepublish-build
$(MAKE) test #$(MAKE) test #fuck your tests babel...
new-version: new-version:
git pull --rebase git pull --rebase

View File

@ -1,5 +1,5 @@
import _Array$from from "../../core-js/array/from"; import _Array$from from "..\\../core-js/array/from";
import _isIterable from "../../core-js/is-iterable"; import _isIterable from "..\\../core-js/is-iterable";
export default function _iterableToArray(iter) { export default function _iterableToArray(iter) {
if (_isIterable(Object(iter)) || Object.prototype.toString.call(iter) === "[object Arguments]") return _Array$from(iter); if (_isIterable(Object(iter)) || Object.prototype.toString.call(iter) === "[object Arguments]") return _Array$from(iter);
} }