source: imaps-frontend/node_modules/sass/sass.node.mjs

main
Last change on this file was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago

Pred finalna verzija

  • Property mode set to 100644
File size: 5.4 KB
RevLine 
[0c6b92a]1import cjs from "./sass.node.js";
2
3export const compile = cjs.compile;
4export const compileAsync = cjs.compileAsync;
5export const compileString = cjs.compileString;
6export const compileStringAsync = cjs.compileStringAsync;
7export const initCompiler = cjs.initCompiler;
8export const initAsyncCompiler = cjs.initAsyncCompiler;
9export const Compiler = cjs.Compiler;
10export const AsyncCompiler = cjs.AsyncCompiler;
11export const Logger = cjs.Logger;
12export const SassArgumentList = cjs.SassArgumentList;
13export const SassBoolean = cjs.SassBoolean;
14export const SassCalculation = cjs.SassCalculation;
15export const CalculationOperation = cjs.CalculationOperation;
16export const CalculationInterpolation = cjs.CalculationInterpolation;
17export const SassColor = cjs.SassColor;
18export const SassFunction = cjs.SassFunction;
19export const SassList = cjs.SassList;
20export const SassMap = cjs.SassMap;
21export const SassMixin = cjs.SassMixin;
22export const SassNumber = cjs.SassNumber;
23export const SassString = cjs.SassString;
24export const Value = cjs.Value;
25export const CustomFunction = cjs.CustomFunction;
26export const ListSeparator = cjs.ListSeparator;
27export const sassFalse = cjs.sassFalse;
28export const sassNull = cjs.sassNull;
29export const sassTrue = cjs.sassTrue;
30export const Exception = cjs.Exception;
31export const PromiseOr = cjs.PromiseOr;
32export const info = cjs.info;
33export const render = cjs.render;
34export const renderSync = cjs.renderSync;
35export const TRUE = cjs.TRUE;
36export const FALSE = cjs.FALSE;
37export const NULL = cjs.NULL;
38export const types = cjs.types;
39export const NodePackageImporter = cjs.NodePackageImporter;
40export const deprecations = cjs.deprecations;
41export const Version = cjs.Version;
42export const parser_ = cjs.parser_;
43
44let printedDefaultExportDeprecation = false;
45function defaultExportDeprecation() {
46 if (printedDefaultExportDeprecation) return;
47 printedDefaultExportDeprecation = true;
48 console.error(
49 "`import sass from 'sass'` is deprecated.\n" +
50 "Please use `import * as sass from 'sass'` instead.");
51}
52
53export default {
54 get compile() {
55 defaultExportDeprecation();
56 return cjs.compile;
57 },
58 get compileAsync() {
59 defaultExportDeprecation();
60 return cjs.compileAsync;
61 },
62 get compileString() {
63 defaultExportDeprecation();
64 return cjs.compileString;
65 },
66 get compileStringAsync() {
67 defaultExportDeprecation();
68 return cjs.compileStringAsync;
69 },
70 get initCompiler() {
71 defaultExportDeprecation();
72 return cjs.initCompiler;
73 },
74 get initAsyncCompiler() {
75 defaultExportDeprecation();
76 return cjs.initAsyncCompiler;
77 },
78 get Compiler() {
79 defaultExportDeprecation();
80 return cjs.Compiler;
81 },
82 get AsyncCompiler() {
83 defaultExportDeprecation();
84 return cjs.AsyncCompiler;
85 },
86 get Logger() {
87 defaultExportDeprecation();
88 return cjs.Logger;
89 },
90 get SassArgumentList() {
91 defaultExportDeprecation();
92 return cjs.SassArgumentList;
93 },
94 get SassBoolean() {
95 defaultExportDeprecation();
96 return cjs.SassBoolean;
97 },
98 get SassCalculation() {
99 defaultExportDeprecation();
100 return cjs.SassCalculation;
101 },
102 get CalculationOperation() {
103 defaultExportDeprecation();
104 return cjs.CalculationOperation;
105 },
106 get CalculationInterpolation() {
107 defaultExportDeprecation();
108 return cjs.CalculationInterpolation;
109 },
110 get SassColor() {
111 defaultExportDeprecation();
112 return cjs.SassColor;
113 },
114 get SassFunction() {
115 defaultExportDeprecation();
116 return cjs.SassFunction;
117 },
118 get SassList() {
119 defaultExportDeprecation();
120 return cjs.SassList;
121 },
122 get SassMap() {
123 defaultExportDeprecation();
124 return cjs.SassMap;
125 },
126 get SassMixin() {
127 defaultExportDeprecation();
128 return cjs.SassMixin;
129 },
130 get SassNumber() {
131 defaultExportDeprecation();
132 return cjs.SassNumber;
133 },
134 get SassString() {
135 defaultExportDeprecation();
136 return cjs.SassString;
137 },
138 get Value() {
139 defaultExportDeprecation();
140 return cjs.Value;
141 },
142 get CustomFunction() {
143 defaultExportDeprecation();
144 return cjs.CustomFunction;
145 },
146 get ListSeparator() {
147 defaultExportDeprecation();
148 return cjs.ListSeparator;
149 },
150 get sassFalse() {
151 defaultExportDeprecation();
152 return cjs.sassFalse;
153 },
154 get sassNull() {
155 defaultExportDeprecation();
156 return cjs.sassNull;
157 },
158 get sassTrue() {
159 defaultExportDeprecation();
160 return cjs.sassTrue;
161 },
162 get Exception() {
163 defaultExportDeprecation();
164 return cjs.Exception;
165 },
166 get PromiseOr() {
167 defaultExportDeprecation();
168 return cjs.PromiseOr;
169 },
170 get info() {
171 defaultExportDeprecation();
172 return cjs.info;
173 },
174 get render() {
175 defaultExportDeprecation();
176 return cjs.render;
177 },
178 get renderSync() {
179 defaultExportDeprecation();
180 return cjs.renderSync;
181 },
182 get TRUE() {
183 defaultExportDeprecation();
184 return cjs.TRUE;
185 },
186 get FALSE() {
187 defaultExportDeprecation();
188 return cjs.FALSE;
189 },
190 get NULL() {
191 defaultExportDeprecation();
192 return cjs.NULL;
193 },
194 get types() {
195 defaultExportDeprecation();
196 return cjs.types;
197 },
198 get NodePackageImporter() {
199 defaultExportDeprecation();
200 return cjs.NodePackageImporter;
201 },
202 get deprecations() {
203 defaultExportDeprecation();
204 return cjs.deprecations;
205 },
206 get Version() {
207 defaultExportDeprecation();
208 return cjs.Version;
209 },
210 get parser_() {
211 defaultExportDeprecation();
212 return cjs.parser_;
213 },
214};
Note: See TracBrowser for help on using the repository browser.