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

v6.0.0 #208

Merged
merged 12 commits into from
Sep 14, 2021
Prev Previous commit
Next Next commit
Remove comments used to trigger prerelease
  • Loading branch information
smithki committed Sep 13, 2021
commit b0fae38ab13c53b1bffec112d757a2f33b967dac
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ jobs:
name: Apply semver updates (if any)
command: |
AUTO_VERSION=$(yarn auto version)
if [[ $AUTO_VERSION ]]; then
if [[ $AUTO_VERSION == pre* ]]; then
yarn lerna version $(echo $AUTO_VERSION) --no-git-tag-version --no-push --yes --preid $(echo $CIRCLE_BRANCH)
elif [[ $AUTO_VERSION ]]; then
yarn lerna version $(echo $AUTO_VERSION) --no-git-tag-version --no-push --yes
fi

Expand Down
2 changes: 0 additions & 2 deletions packages/@magic-sdk/react-native/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@

import 'regenerator-runtime/runtime';

// Force-publish

import { createSDK } from '@magic-sdk/provider';
import * as processPolyfill from 'process';
import localForage from 'localforage';
Expand Down
2 changes: 0 additions & 2 deletions packages/magic-sdk/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ import { IframeController } from './iframe-controller';

export * from '@magic-sdk/commons';

// Force-publish

export const Magic = createSDK(SDKBase, {
platform: 'web',
sdkName: 'magic-sdk',
Expand Down