vite-plugin-taro 0.6.20 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.en.md +4 -4
- package/README.md +4 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.js +147 -136
- package/dist/node/plugins/mini/dev/dev-host.d.ts +29 -0
- package/dist/node/plugins/{wx → mini}/dev/hmr-files.d.ts +1 -3
- package/dist/node/plugins/mini/dev/hmr-mode.d.ts +32 -0
- package/dist/node/plugins/{wx → mini}/dev/hmr-protocol.d.ts +1 -1
- package/dist/node/plugins/{wx/dev/wx-dev-options.d.ts → mini/dev/mini-dev-options.d.ts} +7 -7
- package/dist/node/plugins/{wx → mini}/dev/modes/devtools/devtools-hmr-mode.d.ts +4 -3
- package/dist/node/plugins/mini/dev/modes/interpreter/interpreter-hmr-mode.d.ts +4 -0
- package/dist/node/plugins/mini/dev/modes/rebuild/rebuild-hmr-mode.d.ts +4 -0
- package/dist/node/plugins/mini/dev/plugins.d.ts +35 -0
- package/dist/node/plugins/{wx → mini}/dev/react-refresh.d.ts +7 -7
- package/dist/node/plugins/mini/mini-contract.d.ts +66 -0
- package/dist/node/plugins/mini/module/module.d.ts +38 -0
- package/dist/node/plugins/{wx → mini}/output/files.d.ts +4 -4
- package/dist/node/plugins/{wx → mini}/placer/placement.d.ts +5 -11
- package/dist/node/plugins/{wx → mini}/placer/placer.d.ts +14 -11
- package/dist/node/plugins/mini/plugins.d.ts +4 -0
- package/dist/node/plugins/{wx → mini}/render/capsule.d.ts +5 -5
- package/dist/node/plugins/{wx → mini}/render/native.d.ts +6 -4
- package/dist/node/plugins/{wx → mini}/render/system-js/string-editor.d.ts +1 -1
- package/dist/node/plugins/{wx → mini}/render/system-js/system-js.d.ts +1 -1
- package/dist/node/plugins/{wx → mini}/render/transport.d.ts +3 -1
- package/dist/node/plugins/{wx → mini}/resolve/resolver.d.ts +3 -3
- package/dist/node/plugins/{wx → mini}/resolve/specialize-app-capsule.d.ts +2 -2
- package/dist/node/plugins/{wx → mini}/resolve/specialize-page-capsule.d.ts +2 -2
- package/dist/node/plugins/mini/skeleton/skeleton-utils.d.ts +33 -0
- package/dist/node/plugins/{wx/styles/create-wx-transformer.d.ts → mini/styles/create-mini-transformer.d.ts} +3 -3
- package/dist/node/plugins/{wx → mini}/styles/plugins.d.ts +32 -32
- package/dist/node/plugins/wx/create-wx-skeleton.d.ts +57 -0
- package/dist/node/plugins/wx/plugins.d.ts +5 -2
- package/dist/node/plugins/zfb/create-zfb-skeleton.d.ts +59 -0
- package/dist/node/plugins/zfb/plugins.d.ts +7 -0
- package/dist/node/utils/modules.d.ts +2 -0
- package/dist/node/utils/project-config.d.ts +3 -1
- package/dist/options.d.ts +44 -26
- package/dist/runtime/{wx → mini}/amphibious/bootstrap.js +4 -4
- package/dist/runtime/{wx → mini}/capsule/app.js +1 -1
- package/dist/runtime/mini/capsule/page.js +18 -0
- package/dist/runtime/{wx → mini}/capsule/taro-runtime.d.ts +2 -2
- package/dist/runtime/{wx → mini}/capsule/taro-runtime.js +5 -4
- package/dist/runtime/{wx/dev/wx-hmr-protocol.d.ts → mini/dev/hmr-protocol.d.ts} +2 -2
- package/dist/runtime/{wx/dev/wx-hmr-protocol.js → mini/dev/hmr-protocol.js} +2 -2
- package/dist/runtime/{wx/dev/wx-hmr-runtime.d.ts → mini/dev/mini-hmr-runtime.d.ts} +24 -7
- package/dist/runtime/{wx/dev/wx-hmr-runtime.js → mini/dev/mini-hmr-runtime.js} +21 -13
- package/dist/runtime/mini/dev/modes/devtools/devtools-runtime.d.ts +23 -0
- package/dist/runtime/{wx → mini}/dev/modes/devtools/devtools-runtime.js +8 -8
- package/dist/runtime/{wx → mini}/dev/modes/devtools/page-hmr.js +5 -5
- package/dist/runtime/{wx → mini}/dev/modes/interpreter/interpreter-protocol.d.ts +2 -2
- package/dist/runtime/mini/dev/modes/interpreter/interpreter-protocol.js +1 -0
- package/dist/runtime/mini/dev/modes/interpreter/interpreter-runtime.d.ts +12 -0
- package/dist/runtime/{wx → mini}/dev/modes/interpreter/interpreter-runtime.js +14 -7
- package/dist/runtime/mini/dev/polyfill/polyfill-queue-microtask.d.ts +14 -0
- package/dist/runtime/mini/dev/polyfill/polyfill-queue-microtask.js +18 -0
- package/dist/runtime/{wx → mini}/native/page.js +1 -1
- package/dist/runtime/{wx → mini}/systemjs/system-core.js +2 -3
- package/dist/runtime/wx/dev/connect-wx-socket.d.ts +3 -0
- package/dist/runtime/wx/dev/connect-wx-socket.js +2 -0
- package/dist/runtime/wx/dev/devtools-runtime.js +5 -0
- package/dist/runtime/wx/dev/interpreter-runtime.js +5 -0
- package/dist/runtime/zfb/dev/connect-zfb-socket.d.ts +10 -0
- package/dist/runtime/zfb/dev/connect-zfb-socket.js +18 -0
- package/dist/runtime/zfb/dev/devtools-runtime.d.ts +1 -0
- package/dist/runtime/zfb/dev/devtools-runtime.js +5 -0
- package/dist/runtime/zfb/dev/interpreter-runtime.d.ts +1 -0
- package/dist/runtime/zfb/dev/interpreter-runtime.js +5 -0
- package/package.json +10 -8
- package/dist/node/plugins/wx/dev/dev-host.d.ts +0 -29
- package/dist/node/plugins/wx/dev/hmr-mode.d.ts +0 -31
- package/dist/node/plugins/wx/dev/modes/interpreter/interpreter-hmr-mode.d.ts +0 -3
- package/dist/node/plugins/wx/dev/plugins.d.ts +0 -32
- package/dist/node/plugins/wx/module/module.d.ts +0 -51
- package/dist/node/plugins/wx/output/relative-root.d.ts +0 -2
- package/dist/node/plugins/wx/output/templates.d.ts +0 -124
- package/dist/runtime/wx/capsule/page.js +0 -18
- package/dist/runtime/wx/dev/modes/interpreter/interpreter-protocol.js +0 -1
- /package/dist/node/plugins/{wx → mini}/dev/create-hmr-results-stream.d.ts +0 -0
- /package/dist/node/plugins/{wx → mini}/dev/host-actions.d.ts +0 -0
- /package/dist/node/plugins/{wx → mini}/dev/patch-journal.d.ts +0 -0
- /package/dist/node/plugins/{wx → mini}/module/chunk-path.d.ts +0 -0
- /package/dist/node/plugins/{wx → mini}/native/compile-native-component-interface.d.ts +0 -0
- /package/dist/node/plugins/{wx → mini}/native/create-native-component-output.d.ts +0 -0
- /package/dist/node/plugins/{wx → mini}/native/native-component-assets.d.ts +0 -0
- /package/dist/node/plugins/{wx → mini}/native/native-component-interface.d.ts +0 -0
- /package/dist/runtime/{wx → mini}/amphibious/bootstrap.d.ts +0 -0
- /package/dist/runtime/{wx → mini}/amphibious/transport.d.ts +0 -0
- /package/dist/runtime/{wx → mini}/amphibious/transport.js +0 -0
- /package/dist/runtime/{wx → mini}/capsule/app.d.ts +0 -0
- /package/dist/runtime/{wx → mini}/capsule/component.d.ts +0 -0
- /package/dist/runtime/{wx → mini}/capsule/component.js +0 -0
- /package/dist/runtime/{wx → mini}/capsule/page.d.ts +0 -0
- /package/dist/runtime/{wx → mini}/dev/modes/devtools/page-hmr.d.ts +0 -0
- /package/dist/runtime/{wx → mini}/native/app.d.ts +0 -0
- /package/dist/runtime/{wx → mini}/native/app.js +0 -0
- /package/dist/runtime/{wx → mini}/native/component.d.ts +0 -0
- /package/dist/runtime/{wx → mini}/native/component.js +0 -0
- /package/dist/runtime/{wx → mini}/native/custom-wrapper.d.ts +0 -0
- /package/dist/runtime/{wx → mini}/native/custom-wrapper.js +0 -0
- /package/dist/runtime/{wx → mini}/native/page.d.ts +0 -0
- /package/dist/runtime/{wx → mini}/systemjs/system-core.d.ts +0 -0
- /package/dist/runtime/wx/dev/{modes/devtools/devtools-runtime.d.ts → devtools-runtime.d.ts} +0 -0
- /package/dist/runtime/wx/dev/{modes/interpreter/interpreter-runtime.d.ts → interpreter-runtime.d.ts} +0 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.