mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-18 14:30:36 +03:00
add banner
This commit is contained in:
@@ -1,3 +1,13 @@
|
||||
/*!
|
||||
* OverlayScrollbars
|
||||
* Version: 2.0.0-beta.0
|
||||
*
|
||||
* Copyright (c) Rene Haas | KingSora.
|
||||
* https://github.com/KingSora
|
||||
*
|
||||
* Released under the MIT license.
|
||||
*/
|
||||
|
||||
function each(t, n) {
|
||||
if (isArrayLike(t)) {
|
||||
for (let o = 0; o < t.length; o++) {
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,3 +1,13 @@
|
||||
/*!
|
||||
* OverlayScrollbars
|
||||
* Version: 2.0.0-beta.0
|
||||
*
|
||||
* Copyright (c) Rene Haas | KingSora.
|
||||
* https://github.com/KingSora
|
||||
*
|
||||
* Released under the MIT license.
|
||||
*/
|
||||
|
||||
(function(r, a) {
|
||||
"object" === typeof exports && "undefined" !== typeof module ? a(exports) : "function" === typeof define && define.amd ? define([ "exports" ], a) : (r = "undefined" !== typeof globalThis ? globalThis : r || self,
|
||||
a(r.OverlayScrollbars = {}));
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,13 +1,20 @@
|
||||
const { terser: rollupTerser } = require('rollup-plugin-terser');
|
||||
const { summary } = require('rollup-plugin-summary');
|
||||
const createRollupConfig = require('@local/rollup');
|
||||
const { devDependencies, peerDependencies } = require('./package.json');
|
||||
const { devDependencies, peerDependencies, version } = require('./package.json');
|
||||
|
||||
module.exports = createRollupConfig({
|
||||
project: 'OverlayScrollbars',
|
||||
verbose: true,
|
||||
extractStyles: true,
|
||||
extractTypes: true,
|
||||
banner: `OverlayScrollbars
|
||||
Version: ${version}
|
||||
|
||||
Copyright (c) Rene Haas | KingSora.
|
||||
https://github.com/KingSora
|
||||
|
||||
Released under the MIT license.`,
|
||||
rollup: {
|
||||
external: Object.keys(devDependencies || {}).concat(Object.keys(peerDependencies || {})),
|
||||
output: {
|
||||
|
||||
Reference in New Issue
Block a user