mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-13 14:05:27 +00:00
update
This commit is contained in:
15
node_modules/acorn/rollup/config.bin.js
generated
vendored
Normal file
15
node_modules/acorn/rollup/config.bin.js
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
import buble from 'rollup-plugin-buble'
|
||||
|
||||
export default {
|
||||
entry: 'src/bin/acorn.js',
|
||||
dest: 'bin/acorn',
|
||||
format: 'cjs',
|
||||
banner: '#!/usr/bin/env node',
|
||||
external: [ 'fs', 'path', 'acorn' ],
|
||||
paths: {
|
||||
acorn: '../dist/acorn.js'
|
||||
},
|
||||
plugins: [
|
||||
buble()
|
||||
]
|
||||
}
|
20
node_modules/acorn/rollup/config.loose.js
generated
vendored
Normal file
20
node_modules/acorn/rollup/config.loose.js
generated
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
import buble from 'rollup-plugin-buble'
|
||||
|
||||
export default {
|
||||
entry: 'src/loose/index.js',
|
||||
moduleName: 'acorn.loose',
|
||||
external: [ 'acorn' ],
|
||||
paths: {
|
||||
acorn: './acorn.js'
|
||||
},
|
||||
globals: {
|
||||
acorn: 'acorn'
|
||||
},
|
||||
targets: [
|
||||
{ dest: 'dist/acorn_loose.js', format: 'umd' },
|
||||
{ dest: 'dist/acorn_loose.es.js', format: 'es' }
|
||||
],
|
||||
plugins: [
|
||||
buble()
|
||||
]
|
||||
}
|
11
node_modules/acorn/rollup/config.main.js
generated
vendored
Normal file
11
node_modules/acorn/rollup/config.main.js
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
import buble from 'rollup-plugin-buble';
|
||||
|
||||
export default {
|
||||
entry: 'src/index.js',
|
||||
moduleName: 'acorn',
|
||||
plugins: [ buble() ],
|
||||
targets: [
|
||||
{ dest: 'dist/acorn.js', format: 'umd' },
|
||||
{ dest: 'dist/acorn.es.js', format: 'es' }
|
||||
]
|
||||
};
|
11
node_modules/acorn/rollup/config.walk.js
generated
vendored
Normal file
11
node_modules/acorn/rollup/config.walk.js
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
import buble from 'rollup-plugin-buble';
|
||||
|
||||
export default {
|
||||
entry: 'src/walk/index.js',
|
||||
moduleName: 'acorn.walk',
|
||||
plugins: [ buble() ],
|
||||
targets: [
|
||||
{ dest: 'dist/walk.js', format: 'umd' },
|
||||
{ dest: 'dist/walk.es.js', format: 'es' }
|
||||
]
|
||||
};
|
Reference in New Issue
Block a user