You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
47 lines
1.3 KiB
"use strict";
|
|
/**
|
|
*
|
|
* Tooltip object that consists of tooltips for various of
|
|
* features
|
|
*
|
|
* @returns {Object} An Object that consists of tooltip methods to be invoked
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = {
|
|
cssPlugin: () => {
|
|
return `/*
|
|
* We've enabled MiniCssExtractPlugin for you. This allows your app to
|
|
* use css modules that will be moved into a separate CSS file instead of inside
|
|
* one of your module entries!
|
|
*
|
|
* https://github.com/webpack-contrib/mini-css-extract-plugin
|
|
*
|
|
*/`;
|
|
},
|
|
postcss: () => {
|
|
return `/*
|
|
* We've enabled Postcss, autoprefixer and precss for you. This allows your app
|
|
* to lint CSS, support variables and mixins, transpile future CSS syntax,
|
|
* inline images, and more!
|
|
*
|
|
* To enable SASS or LESS, add the respective loaders to module.rules
|
|
*
|
|
* https://github.com/postcss/postcss
|
|
*
|
|
* https://github.com/postcss/autoprefixer
|
|
*
|
|
* https://github.com/jonathantneal/precss
|
|
*
|
|
*/`;
|
|
},
|
|
html: () => {
|
|
return `/*
|
|
* We've enabled HtmlWebpackPlugin for you! This generates a html
|
|
* page for you when you compile webpack, which will make you start
|
|
* developing and prototyping faster.
|
|
*
|
|
* https://github.com/jantimon/html-webpack-plugin
|
|
*
|
|
*/`;
|
|
},
|
|
};
|
|
|