mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-30 00:46:29 +01:00
create package.json
stubs on build
This commit is contained in:
parent
b0604b52a3
commit
457cdf6acf
@ -35,8 +35,7 @@
|
||||
"dev": "rollup -cw",
|
||||
"pretest": "npm run build",
|
||||
"posttest": "agadoo internal/index.mjs",
|
||||
"prepublishOnly": "export PUBLISH=true && npm test && npm run create-stubs",
|
||||
"create-stubs": "node scripts/create-stubs.js",
|
||||
"prepublishOnly": "PUBLISH=true npm test",
|
||||
"tsd": "tsc -p src/compiler --emitDeclarationOnly && tsc -p src/runtime --emitDeclarationOnly",
|
||||
"lint": "eslint \"{src,test}/**/*.{ts,js}\""
|
||||
},
|
||||
|
@ -61,12 +61,22 @@ export default [
|
||||
external,
|
||||
plugins: [
|
||||
ts_plugin,
|
||||
dir === 'internal' && {
|
||||
generateBundle(options, bundle) {
|
||||
const mod = bundle['index.mjs'];
|
||||
if (mod) {
|
||||
fs.writeFileSync('src/compiler/compile/internal-exports.ts', `// This file is automatically generated\nexport default new Set(${JSON.stringify(mod.exports)});`);
|
||||
{
|
||||
writeBundle(bundle) {
|
||||
if (dir === 'internal') {
|
||||
const mod = bundle['index.mjs'];
|
||||
if (mod) {
|
||||
fs.writeFileSync('src/compiler/compile/internal-exports.ts', `// This file is automatically generated\nexport default new Set(${JSON.stringify(mod.exports)});`);
|
||||
}
|
||||
}
|
||||
|
||||
fs.writeFileSync(`${dir}/package.json`, JSON.stringify({
|
||||
main: './index',
|
||||
module: './index.mjs',
|
||||
types: './index.d.ts'
|
||||
}, null, ' '));
|
||||
|
||||
fs.writeFileSync(`${dir}/index.d.ts`, `export * from '../types/runtime/${dir}/index';`);
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -1,12 +0,0 @@
|
||||
const fs = require('fs');
|
||||
|
||||
fs.readdirSync('src/runtime')
|
||||
.filter(dir => fs.statSync(`src/runtime/${dir}`).isDirectory())
|
||||
.forEach(dir => {
|
||||
fs.writeFileSync(`${dir}/package.json`, JSON.stringify({
|
||||
main: './index',
|
||||
module: './index.mjs'
|
||||
}, null, ' '));
|
||||
|
||||
fs.writeFileSync(`${dir}/index.d.ts`, `export * from '../types/runtime/${dir}/index';`);
|
||||
});
|
Loading…
Reference in New Issue
Block a user