Move from TS to JS
parent
841ed23855
commit
12187ca227
|
@ -4,7 +4,6 @@ import postcssPluginBanner from 'postcss-banner';
|
|||
import postcssPluginCssnano from 'cssnano';
|
||||
import strip from '@rollup/plugin-strip';
|
||||
import { terser } from 'rollup-plugin-terser';
|
||||
import typescript from '@rollup/plugin-typescript';
|
||||
|
||||
const isDev = process.env.ROLLUP_WATCH || process.env.NODE_ENV === 'development';
|
||||
|
||||
|
@ -20,7 +19,6 @@ const bannerText = `${pkg.name} v${pkg.version} by Nikita Karamov\n${pkg.homepag
|
|||
* @type {Plugin[]}
|
||||
*/
|
||||
const plugins = [
|
||||
typescript(),
|
||||
];
|
||||
|
||||
if (!isDev) {
|
||||
|
@ -98,12 +96,12 @@ const getOutputs = (baseDir) => {
|
|||
|
||||
const config = [
|
||||
{
|
||||
input: './src/autoinit.ts',
|
||||
input: './src/autoinit.js',
|
||||
output: getOutputs(`${outputDir}`),
|
||||
plugins,
|
||||
},
|
||||
{
|
||||
input: './src/shareon.ts',
|
||||
input: './src/shareon.js',
|
||||
output: getOutputs(`${outputDir}noinit/`),
|
||||
plugins: plugins.slice(0, -1),
|
||||
},
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import './style.scss';
|
||||
import './style.css';
|
||||
|
||||
import initializeShareon from './shareon';
|
||||
|
|
@ -1,15 +1,18 @@
|
|||
import urlBuilderMap from './networks';
|
||||
// eslint-disable-next-line import/no-unresolved
|
||||
import urlBuilderMap from 'consts:urlBuilderMap';
|
||||
|
||||
const initializeShareon = () : void => {
|
||||
const initializeShareon = () => {
|
||||
const shareonContainers = document.getElementsByClassName('shareon');
|
||||
|
||||
// iterate over <div class="shareon">
|
||||
for (let i = 0; i < shareonContainers.length; i += 1) {
|
||||
const container = shareonContainers[i] as HTMLElement;
|
||||
/** @type Element */
|
||||
const container = shareonContainers[i];
|
||||
|
||||
// iterate over children of <div class="shareon">
|
||||
for (let j = 0; j < container.children.length; j += 1) {
|
||||
const child = container.children[j] as HTMLElement;
|
||||
/** @type Element */
|
||||
const child = container.children[j];
|
||||
|
||||
if (child) {
|
||||
const classListLength = child.classList.length;
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"lib": [
|
||||
"dom",
|
||||
"es6"
|
||||
],
|
||||
"module": "ES2020",
|
||||
"noImplicitAny": true,
|
||||
"noImplicitReturns": true,
|
||||
"target": "es5"
|
||||
},
|
||||
"include": [
|
||||
"./src/**/*"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue