UNPKG

790 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.simpleConfigStubFile = exports.defaultConfigStubFile = exports.defaultConfigFile = exports.cli = void 0;
7
8var _path = _interopRequireDefault(require("path"));
9
10function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
12const cli = 'tailwind';
13exports.cli = cli;
14const defaultConfigFile = './tailwind.config.js';
15exports.defaultConfigFile = defaultConfigFile;
16
17const defaultConfigStubFile = _path.default.resolve(__dirname, '../stubs/defaultConfig.stub.js');
18
19exports.defaultConfigStubFile = defaultConfigStubFile;
20
21const simpleConfigStubFile = _path.default.resolve(__dirname, '../stubs/simpleConfig.stub.js');
22
23exports.simpleConfigStubFile = simpleConfigStubFile;
\No newline at end of file