Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove compiling polyfills into published code #891

Merged
merged 2 commits into from
May 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,22 +44,6 @@ jobs:
name: Test Types
command: yarn tsTest:custom && yarn tsTest:main

build-node6.14:
working_directory: ~/jimp-6.14
docker:
- image: circleci/node:6.14-browsers
steps:
- checkout
- run:
name: Install Dependencies
command: yarn install --frozen-lockfile --network-timeout 100000 --ignore-engines
- run:
name: Build Packages
command: yarn build
- run:
name: Test
command: yarn test --ci

build-node8:
<<: *defaults
steps:
Expand Down Expand Up @@ -118,11 +102,6 @@ workflows:
requires:
- install

- build-node6.14:
requires:
- lint
- test-types

- build-node8:
requires:
- lint
Expand Down
8 changes: 1 addition & 7 deletions babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,7 @@ module.exports = api => {

return {
presets: [
[
'@babel/preset-env',
{
useBuiltIns: 'usage',
corejs: 3
}
]
'@babel/preset-env',
],

plugins: [
Expand Down