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.
Files changed (104) hide show
  1. package/README.en.md +4 -4
  2. package/README.md +4 -4
  3. package/dist/index.d.ts +1 -1
  4. package/dist/index.js +147 -136
  5. package/dist/node/plugins/mini/dev/dev-host.d.ts +29 -0
  6. package/dist/node/plugins/{wx → mini}/dev/hmr-files.d.ts +1 -3
  7. package/dist/node/plugins/mini/dev/hmr-mode.d.ts +32 -0
  8. package/dist/node/plugins/{wx → mini}/dev/hmr-protocol.d.ts +1 -1
  9. package/dist/node/plugins/{wx/dev/wx-dev-options.d.ts → mini/dev/mini-dev-options.d.ts} +7 -7
  10. package/dist/node/plugins/{wx → mini}/dev/modes/devtools/devtools-hmr-mode.d.ts +4 -3
  11. package/dist/node/plugins/mini/dev/modes/interpreter/interpreter-hmr-mode.d.ts +4 -0
  12. package/dist/node/plugins/mini/dev/modes/rebuild/rebuild-hmr-mode.d.ts +4 -0
  13. package/dist/node/plugins/mini/dev/plugins.d.ts +35 -0
  14. package/dist/node/plugins/{wx → mini}/dev/react-refresh.d.ts +7 -7
  15. package/dist/node/plugins/mini/mini-contract.d.ts +66 -0
  16. package/dist/node/plugins/mini/module/module.d.ts +38 -0
  17. package/dist/node/plugins/{wx → mini}/output/files.d.ts +4 -4
  18. package/dist/node/plugins/{wx → mini}/placer/placement.d.ts +5 -11
  19. package/dist/node/plugins/{wx → mini}/placer/placer.d.ts +14 -11
  20. package/dist/node/plugins/mini/plugins.d.ts +4 -0
  21. package/dist/node/plugins/{wx → mini}/render/capsule.d.ts +5 -5
  22. package/dist/node/plugins/{wx → mini}/render/native.d.ts +6 -4
  23. package/dist/node/plugins/{wx → mini}/render/system-js/string-editor.d.ts +1 -1
  24. package/dist/node/plugins/{wx → mini}/render/system-js/system-js.d.ts +1 -1
  25. package/dist/node/plugins/{wx → mini}/render/transport.d.ts +3 -1
  26. package/dist/node/plugins/{wx → mini}/resolve/resolver.d.ts +3 -3
  27. package/dist/node/plugins/{wx → mini}/resolve/specialize-app-capsule.d.ts +2 -2
  28. package/dist/node/plugins/{wx → mini}/resolve/specialize-page-capsule.d.ts +2 -2
  29. package/dist/node/plugins/mini/skeleton/skeleton-utils.d.ts +33 -0
  30. package/dist/node/plugins/{wx/styles/create-wx-transformer.d.ts → mini/styles/create-mini-transformer.d.ts} +3 -3
  31. package/dist/node/plugins/{wx → mini}/styles/plugins.d.ts +32 -32
  32. package/dist/node/plugins/wx/create-wx-skeleton.d.ts +57 -0
  33. package/dist/node/plugins/wx/plugins.d.ts +5 -2
  34. package/dist/node/plugins/zfb/create-zfb-skeleton.d.ts +59 -0
  35. package/dist/node/plugins/zfb/plugins.d.ts +7 -0
  36. package/dist/node/utils/modules.d.ts +2 -0
  37. package/dist/node/utils/project-config.d.ts +3 -1
  38. package/dist/options.d.ts +44 -26
  39. package/dist/runtime/{wx → mini}/amphibious/bootstrap.js +4 -4
  40. package/dist/runtime/{wx → mini}/capsule/app.js +1 -1
  41. package/dist/runtime/mini/capsule/page.js +18 -0
  42. package/dist/runtime/{wx → mini}/capsule/taro-runtime.d.ts +2 -2
  43. package/dist/runtime/{wx → mini}/capsule/taro-runtime.js +5 -4
  44. package/dist/runtime/{wx/dev/wx-hmr-protocol.d.ts → mini/dev/hmr-protocol.d.ts} +2 -2
  45. package/dist/runtime/{wx/dev/wx-hmr-protocol.js → mini/dev/hmr-protocol.js} +2 -2
  46. package/dist/runtime/{wx/dev/wx-hmr-runtime.d.ts → mini/dev/mini-hmr-runtime.d.ts} +24 -7
  47. package/dist/runtime/{wx/dev/wx-hmr-runtime.js → mini/dev/mini-hmr-runtime.js} +21 -13
  48. package/dist/runtime/mini/dev/modes/devtools/devtools-runtime.d.ts +23 -0
  49. package/dist/runtime/{wx → mini}/dev/modes/devtools/devtools-runtime.js +8 -8
  50. package/dist/runtime/{wx → mini}/dev/modes/devtools/page-hmr.js +5 -5
  51. package/dist/runtime/{wx → mini}/dev/modes/interpreter/interpreter-protocol.d.ts +2 -2
  52. package/dist/runtime/mini/dev/modes/interpreter/interpreter-protocol.js +1 -0
  53. package/dist/runtime/mini/dev/modes/interpreter/interpreter-runtime.d.ts +12 -0
  54. package/dist/runtime/{wx → mini}/dev/modes/interpreter/interpreter-runtime.js +14 -7
  55. package/dist/runtime/mini/dev/polyfill/polyfill-queue-microtask.d.ts +14 -0
  56. package/dist/runtime/mini/dev/polyfill/polyfill-queue-microtask.js +18 -0
  57. package/dist/runtime/{wx → mini}/native/page.js +1 -1
  58. package/dist/runtime/{wx → mini}/systemjs/system-core.js +2 -3
  59. package/dist/runtime/wx/dev/connect-wx-socket.d.ts +3 -0
  60. package/dist/runtime/wx/dev/connect-wx-socket.js +2 -0
  61. package/dist/runtime/wx/dev/devtools-runtime.js +5 -0
  62. package/dist/runtime/wx/dev/interpreter-runtime.js +5 -0
  63. package/dist/runtime/zfb/dev/connect-zfb-socket.d.ts +10 -0
  64. package/dist/runtime/zfb/dev/connect-zfb-socket.js +18 -0
  65. package/dist/runtime/zfb/dev/devtools-runtime.d.ts +1 -0
  66. package/dist/runtime/zfb/dev/devtools-runtime.js +5 -0
  67. package/dist/runtime/zfb/dev/interpreter-runtime.d.ts +1 -0
  68. package/dist/runtime/zfb/dev/interpreter-runtime.js +5 -0
  69. package/package.json +10 -8
  70. package/dist/node/plugins/wx/dev/dev-host.d.ts +0 -29
  71. package/dist/node/plugins/wx/dev/hmr-mode.d.ts +0 -31
  72. package/dist/node/plugins/wx/dev/modes/interpreter/interpreter-hmr-mode.d.ts +0 -3
  73. package/dist/node/plugins/wx/dev/plugins.d.ts +0 -32
  74. package/dist/node/plugins/wx/module/module.d.ts +0 -51
  75. package/dist/node/plugins/wx/output/relative-root.d.ts +0 -2
  76. package/dist/node/plugins/wx/output/templates.d.ts +0 -124
  77. package/dist/runtime/wx/capsule/page.js +0 -18
  78. package/dist/runtime/wx/dev/modes/interpreter/interpreter-protocol.js +0 -1
  79. /package/dist/node/plugins/{wx → mini}/dev/create-hmr-results-stream.d.ts +0 -0
  80. /package/dist/node/plugins/{wx → mini}/dev/host-actions.d.ts +0 -0
  81. /package/dist/node/plugins/{wx → mini}/dev/patch-journal.d.ts +0 -0
  82. /package/dist/node/plugins/{wx → mini}/module/chunk-path.d.ts +0 -0
  83. /package/dist/node/plugins/{wx → mini}/native/compile-native-component-interface.d.ts +0 -0
  84. /package/dist/node/plugins/{wx → mini}/native/create-native-component-output.d.ts +0 -0
  85. /package/dist/node/plugins/{wx → mini}/native/native-component-assets.d.ts +0 -0
  86. /package/dist/node/plugins/{wx → mini}/native/native-component-interface.d.ts +0 -0
  87. /package/dist/runtime/{wx → mini}/amphibious/bootstrap.d.ts +0 -0
  88. /package/dist/runtime/{wx → mini}/amphibious/transport.d.ts +0 -0
  89. /package/dist/runtime/{wx → mini}/amphibious/transport.js +0 -0
  90. /package/dist/runtime/{wx → mini}/capsule/app.d.ts +0 -0
  91. /package/dist/runtime/{wx → mini}/capsule/component.d.ts +0 -0
  92. /package/dist/runtime/{wx → mini}/capsule/component.js +0 -0
  93. /package/dist/runtime/{wx → mini}/capsule/page.d.ts +0 -0
  94. /package/dist/runtime/{wx → mini}/dev/modes/devtools/page-hmr.d.ts +0 -0
  95. /package/dist/runtime/{wx → mini}/native/app.d.ts +0 -0
  96. /package/dist/runtime/{wx → mini}/native/app.js +0 -0
  97. /package/dist/runtime/{wx → mini}/native/component.d.ts +0 -0
  98. /package/dist/runtime/{wx → mini}/native/component.js +0 -0
  99. /package/dist/runtime/{wx → mini}/native/custom-wrapper.d.ts +0 -0
  100. /package/dist/runtime/{wx → mini}/native/custom-wrapper.js +0 -0
  101. /package/dist/runtime/{wx → mini}/native/page.d.ts +0 -0
  102. /package/dist/runtime/{wx → mini}/systemjs/system-core.d.ts +0 -0
  103. /package/dist/runtime/wx/dev/{modes/devtools/devtools-runtime.d.ts → devtools-runtime.d.ts} +0 -0
  104. /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.