Skip to content

Commit

Permalink
bump release
Browse files Browse the repository at this point in the history
  • Loading branch information
six7 committed Nov 3, 2022
1 parent 46ef158 commit 18f908e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "figma-tokens",
"version": "1.0.0",
"plugin_version": "125",
"plugin_version": "126",
"description": "Figma Tokens",
"license": "MIT",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion script/release.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=figma-tokens@125
VERSION=figma-tokens@126
sentry-cli releases -p figma-tokens files "$VERSION" upload-sourcemaps --ext ts --ext tsx --ext map --ext js --ignore-file .sentryignore .
sentry-cli releases set-commits "$VERSION" --auto
sentry-cli releases finalize "$VERSION"
2 changes: 1 addition & 1 deletion src/plugin/renameStylesFromPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default async function renameStylesFromPlugin(
});

const themesToContainToken = themeInfo.themes.filter((theme) => Object.entries(theme.selectedTokenSets).some(([tokenSet, value]) => tokenSet === parent && value === TokenSetStatus.ENABLED)).map((filteredTheme) => filteredTheme.name);
const pathNames = themesToContainToken.map((theme) => convertTokenNameToPath(oldName, theme));
const pathNames = themesToContainToken.map((theme) => convertTokenNameToPath(oldName, theme)).concat(convertTokenNameToPath(oldName));
const allStyleIds = allStyles.filter((style) => pathNames.some((pathName) => {
if (isMatchingStyle(pathName, style)) {
const oldPath = oldName.split('.').map((part) => part.trim()).join('/');
Expand Down

2 comments on commit 18f908e

@vercel
Copy link

@vercel vercel bot commented on 18f908e Nov 3, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

figma-tokens – ./

figma-tokens-git-main-six7.vercel.app
figma-tokens.vercel.app
figma-tokens-six7.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 18f908e Nov 3, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ft-storybook – ./

ft-storybook-git-main-six7.vercel.app
ft-storybook.vercel.app
ft-storybook-six7.vercel.app

Please sign in to comment.