mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-13 19:45:26 +00:00
9 lines
273 B
TypeScript
9 lines
273 B
TypeScript
import * as fs from 'fs';
|
|
|
|
export function copy_shimport(dest: string) {
|
|
const shimport_version = require('shimport/package.json').version;
|
|
fs.writeFileSync(
|
|
`${dest}/client/shimport@${shimport_version}.js`,
|
|
fs.readFileSync(require.resolve('shimport/index.js'))
|
|
);
|
|
} |