mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
feat(touch-emulator): support .mjs extension (#10888)
This commit is contained in:
parent
961f70d523
commit
b117e21dc4
11
packages/vant-touch-emulator/build.js
Normal file
11
packages/vant-touch-emulator/build.js
Normal 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'));
|
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
### [v1.4.0]
|
||||||
|
|
||||||
|
`2022-08-06`
|
||||||
|
|
||||||
|
- support `.mjs` extension
|
||||||
|
|
||||||
### [v1.3.1]
|
### [v1.3.1]
|
||||||
|
|
||||||
`2021-07-06`
|
`2021-07-06`
|
||||||
|
@ -1,10 +1,16 @@
|
|||||||
{
|
{
|
||||||
"name": "@vant/touch-emulator",
|
"name": "@vant/touch-emulator",
|
||||||
"version": "1.3.2",
|
"version": "1.4.0",
|
||||||
"description": "Vant touch emulator",
|
"description": "Vant touch emulator",
|
||||||
"main": "index.js",
|
"main": "dist/index.js",
|
||||||
|
"module": "dist/index.mjs",
|
||||||
|
"scripts": {
|
||||||
|
"build": "node ./build.js",
|
||||||
|
"prepare": "pnpm build"
|
||||||
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public",
|
||||||
|
"registry": "https://registry.npmjs.org/"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user