@symbo.ls/preview 2.7.25 → 2.11.269

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/state.js DELETED
@@ -1,14 +0,0 @@
1
- 'use strict'
2
-
3
- import PROJECT_SYSTEM from './config'
4
- import { CASES } from '@symbo.ls/scratch' // eslint-disable-line no-unused-vars
5
- import { getCookie } from 'domql/packages/cookie'
6
-
7
- export const state = {
8
- globalTheme: getCookie('globalTheme') || 'dark',
9
- framework: getCookie('framework') || 'react',
10
- language: getCookie('language') || 'javascript',
11
- PROJECT_SYSTEM,
12
- appKey: '4it.symbo.ls'
13
- // globalTheme: CASES.isDark ? 'dark' : 'light'
14
- }
@@ -1,8 +0,0 @@
1
- const path = require('path')
2
-
3
- module.exports = {
4
- getSymbolId: (filePath, fileContent, fileHash) => {
5
- return path.basename(filePath, '.svg')
6
- }
7
- // exclude: ['**/assets/**']
8
- }