diff --git a/.changeset/six-shrimps-behave.md b/.changeset/six-shrimps-behave.md new file mode 100644 index 0000000..63d7481 --- /dev/null +++ b/.changeset/six-shrimps-behave.md @@ -0,0 +1,5 @@ +--- +'@tokens-studio/sd-transforms': patch +--- + +Remove trailing console logs from previous update. diff --git a/src/registerTransforms.ts b/src/registerTransforms.ts index 42cd2fe..ec5b414 100644 --- a/src/registerTransforms.ts +++ b/src/registerTransforms.ts @@ -53,7 +53,6 @@ export async function registerTransforms( sd.registerPreprocessor({ name: 'sd-transforms-preprocessors', preprocessor: dictionary => { - console.log('halllelujah'); return parseTokens(dictionary, transformOpts) as DesignTokens; }, }); diff --git a/test/integration/cross-file-refs.test.ts b/test/integration/cross-file-refs.test.ts index 5486f82..303d4a6 100644 --- a/test/integration/cross-file-refs.test.ts +++ b/test/integration/cross-file-refs.test.ts @@ -39,7 +39,6 @@ describe('cross file references', () => { it('supports cross file references e.g. expanding typography', async () => { const file = await promises.readFile(outputFilePath, 'utf-8'); - console.log(file); expect(file).to.include(` --sdTypoFontWeight: 400; --sdTypoFontStyle: italic; diff --git a/test/integration/swift-UI-color.test.ts b/test/integration/swift-UI-color.test.ts index 5231685..434a114 100644 --- a/test/integration/swift-UI-color.test.ts +++ b/test/integration/swift-UI-color.test.ts @@ -61,7 +61,6 @@ describe('outputReferences integration', () => { it('supports UIColor with color modifiers', async () => { const file = await promises.readFile(outputFilePath, 'utf-8'); - console.log(file); expect(file).to .include(` public static let colorDanger = UIColor(red: 0.251, green: 0.000, blue: 0.000, alpha: 1) public static let colorError = UIColor(red: 0.125, green: 0.000, blue: 0.000, alpha: 1)