mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-20 21:14:45 +00:00
.
This commit is contained in:
parent
00c3b50fca
commit
ae5dcb46c8
7331 changed files with 1784502 additions and 0 deletions
32
node_modules/uri-js/rollup.config.js
generated
vendored
Normal file
32
node_modules/uri-js/rollup.config.js
generated
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
import resolve from 'rollup-plugin-node-resolve';
|
||||
import babel from 'rollup-plugin-babel';
|
||||
const packageJson = require('./package.json');
|
||||
|
||||
export default {
|
||||
entry : "dist/esnext/index.js",
|
||||
format : "umd",
|
||||
moduleName : "URI",
|
||||
plugins: [
|
||||
resolve({
|
||||
module: true,
|
||||
jsnext: true,
|
||||
preferBuiltins: false
|
||||
}),
|
||||
|
||||
babel({
|
||||
"presets": [
|
||||
["latest", {
|
||||
"es2015": {
|
||||
"modules": false
|
||||
}
|
||||
}]
|
||||
],
|
||||
"plugins": ["external-helpers"],
|
||||
"externalHelpers": false
|
||||
}
|
||||
)
|
||||
],
|
||||
dest : "dist/es5/uri.all.js",
|
||||
sourceMap: true,
|
||||
banner: "/** @license URI.js v" + packageJson.version + " (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue