mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 17:30:59 +01:00
move Stylesheet
This commit is contained in:
parent
fd177771af
commit
45039e9612
@ -14,8 +14,7 @@ import annotateWithScopes from '../utils/annotateWithScopes';
|
||||
import clone from '../utils/clone';
|
||||
import DomBlock from './dom/Block';
|
||||
import SsrBlock from './server-side-rendering/Block';
|
||||
import Selector from './Selector';
|
||||
import Stylesheet from './Stylesheet';
|
||||
import Stylesheet from '../css/Stylesheet';
|
||||
import { Node, Parsed, CompileOptions } from '../interfaces';
|
||||
|
||||
const test = typeof global !== 'undefined' && global.__svelte_test;
|
||||
|
@ -9,7 +9,7 @@ import CodeBuilder from '../../utils/CodeBuilder';
|
||||
import visit from './visit';
|
||||
import shared from './shared';
|
||||
import Generator from '../Generator';
|
||||
import Stylesheet from '../Stylesheet';
|
||||
import Stylesheet from '../../css/Stylesheet';
|
||||
import preprocess from './preprocess';
|
||||
import Block from './Block';
|
||||
import { Parsed, CompileOptions, Node } from '../../interfaces';
|
||||
|
@ -1,6 +1,6 @@
|
||||
import deindent from '../../utils/deindent';
|
||||
import Generator from '../Generator';
|
||||
import Stylesheet from '../Stylesheet';
|
||||
import Stylesheet from '../../css/Stylesheet';
|
||||
import Block from './Block';
|
||||
import preprocess from './preprocess';
|
||||
import visit from './visit';
|
||||
|
@ -4,7 +4,7 @@ import generate from './generators/dom/index';
|
||||
import generateSSR from './generators/server-side-rendering/index';
|
||||
import { assign } from './shared/index.js';
|
||||
import { version } from '../package.json';
|
||||
import Stylesheet from './generators/Stylesheet';
|
||||
import Stylesheet from './css/Stylesheet';
|
||||
import { Parsed, CompileOptions, Warning } from './interfaces';
|
||||
|
||||
function normalizeOptions(options: CompileOptions): CompileOptions {
|
||||
|
@ -3,7 +3,7 @@ import validateHtml from './html/index';
|
||||
import { getLocator, Location } from 'locate-character';
|
||||
import getCodeFrame from '../utils/getCodeFrame';
|
||||
import CompileError from '../utils/CompileError';
|
||||
import Stylesheet from '../generators/Stylesheet';
|
||||
import Stylesheet from '../css/Stylesheet';
|
||||
import { Node, Parsed, CompileOptions, Warning } from '../interfaces';
|
||||
|
||||
class ValidationError extends CompileError {
|
||||
|
Loading…
Reference in New Issue
Block a user