PHP WebShell

Текущая директория: /opt/BitGoJS/modules/sdk-coin-icp/node_modules/cbor-x

Просмотр файла: rollup.config.js

import terser from '@rollup/plugin-terser';
import json from "@rollup/plugin-json";
import replace from "@rollup/plugin-replace";

export default [
    {
        input: "node-index.js",
        output: [
            {
                file: "dist/node.cjs",
                format: "cjs",
                sourcemap: true
            }
        ]
    },
    {
        input: "index.js",
        output: {
            file: "dist/index.js",
            format: "umd",
            name: "CBOR",
            sourcemap: true
        }
    },
    {
        input: "index.js",
        plugins: [
            replace({ Function: 'BlockedFunction '})
        ],
        output: {
            file: "dist/index-no-eval.cjs",
            format: "umd",
            name: "CBOR",
            sourcemap: true
        },
    },
    {
        input: "decode.js",
        plugins: [
            replace({ Function: 'BlockedFunction '})
        ],
        output: {
            file: "dist/decode-no-eval.cjs",
            format: "umd",
            name: "CBOR",
            sourcemap: true
        },
    },
    {
        input: "index.js",
        plugins: [
            terser({})
        ],
        output: {
            file: "dist/index.min.js",
            format: "umd",
            name: "CBOR",
            sourcemap: true
        }
    },
    {
        input: "index.js",
        plugins: [
            replace({ Function: 'BlockedFunction '}),
            terser({})
        ],
        output: {
            file: "dist/index-no-eval.min.js",
            format: "umd",
            name: "CBOR",
            sourcemap: true
        }
    },
    {
        input: "tests/test.js",
        plugins: [json()],
        external: ['chai', '../index.js'],
        output: {
            file: "dist/test.js",
            format: "iife",
            sourcemap: true,
            globals: {
                chai: 'chai',
                './index.js': 'CBOR',
            },
        }
    }
];

Выполнить команду


Для локальной разработки. Не используйте в интернете!