Reformat files
This commit is contained in:
parent
05cd1d874e
commit
c2bf29fff2
|
@ -14,7 +14,9 @@
|
||||||
},
|
},
|
||||||
"overrides": [
|
"overrides": [
|
||||||
{
|
{
|
||||||
"files": ["**/*.ts"],
|
"files": [
|
||||||
|
"**/*.ts"
|
||||||
|
],
|
||||||
"parser": "@typescript-eslint/parser",
|
"parser": "@typescript-eslint/parser",
|
||||||
"parserOptions": {
|
"parserOptions": {
|
||||||
"project": "./tsconfig.json"
|
"project": "./tsconfig.json"
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
|
/* eslint-disable import/no-extraneous-dependencies */
|
||||||
import postcssPluginBanner from 'postcss-banner';
|
import postcssPluginBanner from 'postcss-banner';
|
||||||
import postcssPluginCssnano from 'cssnano';
|
import postcssPluginCssnano from 'cssnano';
|
||||||
import rollupPluginLicense from 'rollup-plugin-license';
|
import rollupPluginLicense from 'rollup-plugin-license';
|
||||||
|
@ -8,6 +9,8 @@ import rollupPluginStrip from '@rollup/plugin-strip';
|
||||||
import { terser as rollupPluginTerser } from 'rollup-plugin-terser';
|
import { terser as rollupPluginTerser } from 'rollup-plugin-terser';
|
||||||
import rollupPluginTypescript from '@rollup/plugin-typescript';
|
import rollupPluginTypescript from '@rollup/plugin-typescript';
|
||||||
|
|
||||||
|
// TODO: remove rule after changing the Rollup config
|
||||||
|
// eslint-disable-next-line import/no-dynamic-require
|
||||||
const pkg = require(path.join(process.cwd(), 'package.json'));
|
const pkg = require(path.join(process.cwd(), 'package.json'));
|
||||||
const bannerText = `${pkg.name} v${pkg.version} by Nikita Karamov
|
const bannerText = `${pkg.name} v${pkg.version} by Nikita Karamov
|
||||||
${pkg.homepage}`;
|
${pkg.homepage}`;
|
||||||
|
@ -15,8 +18,8 @@ ${pkg.homepage}`;
|
||||||
export const license = () => rollupPluginLicense({
|
export const license = () => rollupPluginLicense({
|
||||||
banner: {
|
banner: {
|
||||||
commentStyle: 'ignored',
|
commentStyle: 'ignored',
|
||||||
content: bannerText
|
content: bannerText,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -31,8 +34,8 @@ export const postcss = (file = true, minify) => rollupPluginPostcss({
|
||||||
}),
|
}),
|
||||||
postcssPluginBanner({
|
postcssPluginBanner({
|
||||||
banner: bannerText,
|
banner: bannerText,
|
||||||
important: true
|
important: true,
|
||||||
})
|
}),
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,6 @@ const input = './src/index.ts';
|
||||||
const name = 'shareon';
|
const name = 'shareon';
|
||||||
const outputDir = './dev/';
|
const outputDir = './dev/';
|
||||||
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
input,
|
input,
|
||||||
output: {
|
output: {
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
import { license, postcss, strip, terser, typescript } from './plugins';
|
import {
|
||||||
|
license, postcss, strip, terser, typescript,
|
||||||
|
} from './plugins';
|
||||||
|
|
||||||
const input = './src/index.ts';
|
const input = './src/index.ts';
|
||||||
const name = 'shareon';
|
const name = 'shareon';
|
||||||
const outputDir = './dist/';
|
const outputDir = './dist/';
|
||||||
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
input,
|
input,
|
||||||
output: [
|
output: [
|
||||||
|
@ -24,6 +25,6 @@ export default {
|
||||||
typescript(),
|
typescript(),
|
||||||
strip(),
|
strip(),
|
||||||
postcss(`${name}.min.css`, true),
|
postcss(`${name}.min.css`, true),
|
||||||
license()
|
license(),
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue