mirror of
https://github.com/penpot/penpot-export.git
synced 2025-01-09 00:10:08 -05:00
37 lines
947 B
JavaScript
37 lines
947 B
JavaScript
// @ts-check
|
|
require('dotenv').config({ path: '../.env' })
|
|
|
|
if (typeof process.env.PENPOT_ACCESS_TOKEN !== 'string') {
|
|
throw new Error('Missing PENPOT_ACCESS_TOKEN environment variable')
|
|
}
|
|
|
|
if (typeof process.env.PENPOT_FILE_ID !== 'string') {
|
|
throw new Error('Missing PENPOT_FILE_ID environment variable')
|
|
}
|
|
|
|
/**
|
|
* @type {import('@penpot-export/core').UserConfig}
|
|
*/
|
|
const config = {
|
|
instance: process.env.PENPOT_BASE_URL || undefined,
|
|
accessToken: process.env.PENPOT_ACCESS_TOKEN,
|
|
files: [
|
|
{
|
|
fileId: process.env.PENPOT_FILE_ID,
|
|
colors: [
|
|
{
|
|
format: 'scss',
|
|
output: './variables/colors.scss', // 👈 Path where your SCSS file should be generated.
|
|
},
|
|
],
|
|
typographies: [
|
|
{
|
|
format: 'scss',
|
|
output: './variables/typographies.scss', // 👈 Path where your SCSS file should be generated.
|
|
},
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
module.exports = config
|