mirror of
https://github.com/vuejs/apollo.git
synced 2025-12-08 18:02:09 +00:00
9 lines
207 B
JavaScript
9 lines
207 B
JavaScript
import path from 'node:path'
|
|
import fs from 'node:fs'
|
|
|
|
const file = path.join(process.cwd(), 'dist', 'esm', 'package.json')
|
|
|
|
fs.writeFileSync(file, JSON.stringify({
|
|
"type": "module",
|
|
}, null, 2), 'utf-8')
|