├── .gitignore ├── .prettierrc.yml ├── LICENSE.txt ├── README.md ├── manifest.json ├── package.json ├── screenshot.png ├── src ├── app │ ├── common │ │ ├── CustomSelect.tsx │ │ ├── FileUploadDropzone.tsx │ │ ├── Global.styles.ts │ │ ├── RadioButtons.tsx │ │ ├── Section.tsx │ │ └── Spinner.tsx │ ├── components │ │ ├── About │ │ │ └── About.tsx │ │ ├── App.tsx │ │ ├── Axes │ │ │ ├── Axes.tsx │ │ │ └── Axis.tsx │ │ ├── Font │ │ │ ├── Font.tsx │ │ │ └── FontUpload.tsx │ │ ├── Glyphs │ │ │ └── Glyphs.tsx │ │ ├── Info │ │ │ └── Info.tsx │ │ ├── Instances │ │ │ └── Instances.tsx │ │ ├── Layout │ │ │ ├── Footer.tsx │ │ │ ├── Header.tsx │ │ │ └── Layout.tsx │ │ ├── Preview │ │ │ └── Preview.tsx │ │ ├── Style │ │ │ ├── AlignmentSection.tsx │ │ │ ├── ColorSection.tsx │ │ │ └── Style.tsx │ │ ├── Token │ │ │ └── Token.tsx │ │ └── routes.tsx │ ├── consts.ts │ ├── context │ │ └── stateContext.tsx │ ├── declarations.d.ts │ ├── hooks │ │ ├── useFetchFigmaMessages.ts │ │ ├── useGetFontList.ts │ │ ├── useGetHbInstance.ts │ │ └── useGetToken.ts │ ├── index.html │ ├── index.tsx │ ├── store │ │ ├── activeTextSlice.ts │ │ ├── configStore.ts │ │ └── rootReducer.ts │ ├── types.ts │ └── utils │ │ ├── convertHtmlToText.ts │ │ ├── convertTextToSvg.ts │ │ ├── fontUtils.ts │ │ ├── getFontData.ts │ │ ├── googleVariableFontList.ts │ │ └── updateOnFigma.ts ├── libraries │ ├── hb.wasm │ ├── hbjs.js │ └── samsa.js └── plugin │ ├── constants.ts │ ├── controller.ts │ ├── events.ts │ ├── glyphs.ts │ ├── init.ts │ └── utils.ts ├── tsconfig.json ├── variable-fonts-lambda ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── configs │ ├── dev.yml │ ├── local.yml │ └── prod.yml ├── deploy-policy.json ├── docker-compose.yml ├── handlers │ ├── _not-found.yml │ └── fonts-endpoints.yml ├── modules │ ├── fonts │ │ └── endpoints │ │ │ ├── callback.js │ │ │ ├── delete.js │ │ │ ├── read.js │ │ │ ├── token.js │ │ │ ├── update.js │ │ │ └── upload.js │ └── redirects.js ├── package-lock.json ├── package.json ├── serverless-dynamic.js ├── serverless.yml └── shared │ └── lib │ ├── dynamo.js │ ├── kinesis.js │ ├── lambda.js │ ├── parsers.js │ ├── response.js │ └── uuid.js ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | settings.json 4 | yarn-error.log 5 | *.DS_Store 6 | -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/README.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/app/common/CustomSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/common/CustomSelect.tsx -------------------------------------------------------------------------------- /src/app/common/FileUploadDropzone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/common/FileUploadDropzone.tsx -------------------------------------------------------------------------------- /src/app/common/Global.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/common/Global.styles.ts -------------------------------------------------------------------------------- /src/app/common/RadioButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/common/RadioButtons.tsx -------------------------------------------------------------------------------- /src/app/common/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/common/Section.tsx -------------------------------------------------------------------------------- /src/app/common/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/common/Spinner.tsx -------------------------------------------------------------------------------- /src/app/components/About/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/About/About.tsx -------------------------------------------------------------------------------- /src/app/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/App.tsx -------------------------------------------------------------------------------- /src/app/components/Axes/Axes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Axes/Axes.tsx -------------------------------------------------------------------------------- /src/app/components/Axes/Axis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Axes/Axis.tsx -------------------------------------------------------------------------------- /src/app/components/Font/Font.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Font/Font.tsx -------------------------------------------------------------------------------- /src/app/components/Font/FontUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Font/FontUpload.tsx -------------------------------------------------------------------------------- /src/app/components/Glyphs/Glyphs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Glyphs/Glyphs.tsx -------------------------------------------------------------------------------- /src/app/components/Info/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Info/Info.tsx -------------------------------------------------------------------------------- /src/app/components/Instances/Instances.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Instances/Instances.tsx -------------------------------------------------------------------------------- /src/app/components/Layout/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Layout/Footer.tsx -------------------------------------------------------------------------------- /src/app/components/Layout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Layout/Header.tsx -------------------------------------------------------------------------------- /src/app/components/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Layout/Layout.tsx -------------------------------------------------------------------------------- /src/app/components/Preview/Preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Preview/Preview.tsx -------------------------------------------------------------------------------- /src/app/components/Style/AlignmentSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Style/AlignmentSection.tsx -------------------------------------------------------------------------------- /src/app/components/Style/ColorSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Style/ColorSection.tsx -------------------------------------------------------------------------------- /src/app/components/Style/Style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Style/Style.tsx -------------------------------------------------------------------------------- /src/app/components/Token/Token.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/Token/Token.tsx -------------------------------------------------------------------------------- /src/app/components/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/components/routes.tsx -------------------------------------------------------------------------------- /src/app/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/consts.ts -------------------------------------------------------------------------------- /src/app/context/stateContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/context/stateContext.tsx -------------------------------------------------------------------------------- /src/app/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/declarations.d.ts -------------------------------------------------------------------------------- /src/app/hooks/useFetchFigmaMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/hooks/useFetchFigmaMessages.ts -------------------------------------------------------------------------------- /src/app/hooks/useGetFontList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/hooks/useGetFontList.ts -------------------------------------------------------------------------------- /src/app/hooks/useGetHbInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/hooks/useGetHbInstance.ts -------------------------------------------------------------------------------- /src/app/hooks/useGetToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/hooks/useGetToken.ts -------------------------------------------------------------------------------- /src/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/index.html -------------------------------------------------------------------------------- /src/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/index.tsx -------------------------------------------------------------------------------- /src/app/store/activeTextSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/store/activeTextSlice.ts -------------------------------------------------------------------------------- /src/app/store/configStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/store/configStore.ts -------------------------------------------------------------------------------- /src/app/store/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/store/rootReducer.ts -------------------------------------------------------------------------------- /src/app/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/types.ts -------------------------------------------------------------------------------- /src/app/utils/convertHtmlToText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/utils/convertHtmlToText.ts -------------------------------------------------------------------------------- /src/app/utils/convertTextToSvg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/utils/convertTextToSvg.ts -------------------------------------------------------------------------------- /src/app/utils/fontUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/utils/fontUtils.ts -------------------------------------------------------------------------------- /src/app/utils/getFontData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/utils/getFontData.ts -------------------------------------------------------------------------------- /src/app/utils/googleVariableFontList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/utils/googleVariableFontList.ts -------------------------------------------------------------------------------- /src/app/utils/updateOnFigma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/app/utils/updateOnFigma.ts -------------------------------------------------------------------------------- /src/libraries/hb.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/libraries/hb.wasm -------------------------------------------------------------------------------- /src/libraries/hbjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/libraries/hbjs.js -------------------------------------------------------------------------------- /src/libraries/samsa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/libraries/samsa.js -------------------------------------------------------------------------------- /src/plugin/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/plugin/constants.ts -------------------------------------------------------------------------------- /src/plugin/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/plugin/controller.ts -------------------------------------------------------------------------------- /src/plugin/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/plugin/events.ts -------------------------------------------------------------------------------- /src/plugin/glyphs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/plugin/glyphs.ts -------------------------------------------------------------------------------- /src/plugin/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/plugin/init.ts -------------------------------------------------------------------------------- /src/plugin/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/src/plugin/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/tsconfig.json -------------------------------------------------------------------------------- /variable-fonts-lambda/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/.gitignore -------------------------------------------------------------------------------- /variable-fonts-lambda/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/.jshintrc -------------------------------------------------------------------------------- /variable-fonts-lambda/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/.travis.yml -------------------------------------------------------------------------------- /variable-fonts-lambda/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/Dockerfile -------------------------------------------------------------------------------- /variable-fonts-lambda/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/LICENSE -------------------------------------------------------------------------------- /variable-fonts-lambda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/README.md -------------------------------------------------------------------------------- /variable-fonts-lambda/configs/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/configs/dev.yml -------------------------------------------------------------------------------- /variable-fonts-lambda/configs/local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/configs/local.yml -------------------------------------------------------------------------------- /variable-fonts-lambda/configs/prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/configs/prod.yml -------------------------------------------------------------------------------- /variable-fonts-lambda/deploy-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/deploy-policy.json -------------------------------------------------------------------------------- /variable-fonts-lambda/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/docker-compose.yml -------------------------------------------------------------------------------- /variable-fonts-lambda/handlers/_not-found.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/handlers/_not-found.yml -------------------------------------------------------------------------------- /variable-fonts-lambda/handlers/fonts-endpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/handlers/fonts-endpoints.yml -------------------------------------------------------------------------------- /variable-fonts-lambda/modules/fonts/endpoints/callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/modules/fonts/endpoints/callback.js -------------------------------------------------------------------------------- /variable-fonts-lambda/modules/fonts/endpoints/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/modules/fonts/endpoints/delete.js -------------------------------------------------------------------------------- /variable-fonts-lambda/modules/fonts/endpoints/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/modules/fonts/endpoints/read.js -------------------------------------------------------------------------------- /variable-fonts-lambda/modules/fonts/endpoints/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/modules/fonts/endpoints/token.js -------------------------------------------------------------------------------- /variable-fonts-lambda/modules/fonts/endpoints/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/modules/fonts/endpoints/update.js -------------------------------------------------------------------------------- /variable-fonts-lambda/modules/fonts/endpoints/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/modules/fonts/endpoints/upload.js -------------------------------------------------------------------------------- /variable-fonts-lambda/modules/redirects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/modules/redirects.js -------------------------------------------------------------------------------- /variable-fonts-lambda/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/package-lock.json -------------------------------------------------------------------------------- /variable-fonts-lambda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/package.json -------------------------------------------------------------------------------- /variable-fonts-lambda/serverless-dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/serverless-dynamic.js -------------------------------------------------------------------------------- /variable-fonts-lambda/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/serverless.yml -------------------------------------------------------------------------------- /variable-fonts-lambda/shared/lib/dynamo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/shared/lib/dynamo.js -------------------------------------------------------------------------------- /variable-fonts-lambda/shared/lib/kinesis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/shared/lib/kinesis.js -------------------------------------------------------------------------------- /variable-fonts-lambda/shared/lib/lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/shared/lib/lambda.js -------------------------------------------------------------------------------- /variable-fonts-lambda/shared/lib/parsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/shared/lib/parsers.js -------------------------------------------------------------------------------- /variable-fonts-lambda/shared/lib/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/shared/lib/response.js -------------------------------------------------------------------------------- /variable-fonts-lambda/shared/lib/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/variable-fonts-lambda/shared/lib/uuid.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tgemayel/variable-fonts-figma/HEAD/yarn.lock --------------------------------------------------------------------------------