feat(touch-emulator): support .mjs extension (#10888)

This commit is contained in:
neverland 2022-08-06 22:53:57 +08:00 committed by GitHub
parent 961f70d523
commit b117e21dc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 3 deletions

View File

@ -0,0 +1,11 @@
const fs = require('fs');
const path = require('path');
const srcFile = path.join(__dirname, 'src', 'index.js');
const distDir = path.join(__dirname, 'dist');
if (!fs.existsSync(distDir)) {
fs.mkdirSync(distDir);
}
fs.copyFileSync(srcFile, path.join(distDir, 'index.js'));
fs.copyFileSync(srcFile, path.join(distDir, 'index.mjs'));

View File

@ -1,5 +1,11 @@
# Changelog
### [v1.4.0]
`2022-08-06`
- support `.mjs` extension
### [v1.3.1]
`2021-07-06`

View File

@ -1,10 +1,16 @@
{
"name": "@vant/touch-emulator",
"version": "1.3.2",
"version": "1.4.0",
"description": "Vant touch emulator",
"main": "index.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"build": "node ./build.js",
"prepare": "pnpm build"
},
"publishConfig": {
"access": "public"
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",