svelte 3.46.5 → 3.46.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Svelte changelog
2
2
 
3
+ ## 3.46.6
4
+
5
+ * Actually include action TypeScript interface in published package ([#7407](https://github.com/sveltejs/svelte/pull/7407))
6
+
3
7
  ## 3.46.5
4
8
 
5
9
  * Add TypeScript interfaces for typing actions ([#6538](https://github.com/sveltejs/svelte/issues/6538))
@@ -0,0 +1 @@
1
+ export * from '../types/runtime/action/index';
@@ -0,0 +1,2 @@
1
+ 'use strict';
2
+
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,5 @@
1
+ {
2
+ "main": "./index",
3
+ "module": "./index.mjs",
4
+ "types": "./index.d.ts"
5
+ }
package/compiler.js CHANGED
@@ -30677,7 +30677,7 @@
30677
30677
  if (result) {
30678
30678
  const { compile_options, name } = this;
30679
30679
  const { format = 'esm' } = compile_options;
30680
- const banner = `${this.file ? `${this.file} ` : ''}generated by Svelte v${'3.46.5'}`;
30680
+ const banner = `${this.file ? `${this.file} ` : ''}generated by Svelte v${'3.46.6'}`;
30681
30681
  const program = { type: 'Program', body: result.js };
30682
30682
  walk(program, {
30683
30683
  enter: (node, parent, key) => {
@@ -32170,7 +32170,7 @@
32170
32170
  return result.to_processed();
32171
32171
  }
32172
32172
 
32173
- const VERSION = '3.46.5';
32173
+ const VERSION = '3.46.6';
32174
32174
 
32175
32175
  exports.VERSION = VERSION;
32176
32176
  exports.compile = compile;
package/compiler.mjs CHANGED
@@ -30671,7 +30671,7 @@ class Component {
30671
30671
  if (result) {
30672
30672
  const { compile_options, name } = this;
30673
30673
  const { format = 'esm' } = compile_options;
30674
- const banner = `${this.file ? `${this.file} ` : ''}generated by Svelte v${'3.46.5'}`;
30674
+ const banner = `${this.file ? `${this.file} ` : ''}generated by Svelte v${'3.46.6'}`;
30675
30675
  const program = { type: 'Program', body: result.js };
30676
30676
  walk(program, {
30677
30677
  enter: (node, parent, key) => {
@@ -32164,7 +32164,7 @@ async function preprocess(source, preprocessor, options) {
32164
32164
  return result.to_processed();
32165
32165
  }
32166
32166
 
32167
- const VERSION = '3.46.5';
32167
+ const VERSION = '3.46.6';
32168
32168
 
32169
32169
  export { VERSION, compile, parse$3 as parse, preprocess, walk };
32170
32170
  //# sourceMappingURL=compiler.mjs.map
package/internal/index.js CHANGED
@@ -1970,7 +1970,7 @@ class SvelteComponent {
1970
1970
  }
1971
1971
 
1972
1972
  function dispatch_dev(type, detail) {
1973
- document.dispatchEvent(custom_event(type, Object.assign({ version: '3.46.5' }, detail), true));
1973
+ document.dispatchEvent(custom_event(type, Object.assign({ version: '3.46.6' }, detail), true));
1974
1974
  }
1975
1975
  function append_dev(target, node) {
1976
1976
  dispatch_dev('SvelteDOMInsert', { target, node });
@@ -1968,7 +1968,7 @@ class SvelteComponent {
1968
1968
  }
1969
1969
 
1970
1970
  function dispatch_dev(type, detail) {
1971
- document.dispatchEvent(custom_event(type, Object.assign({ version: '3.46.5' }, detail), true));
1971
+ document.dispatchEvent(custom_event(type, Object.assign({ version: '3.46.6' }, detail), true));
1972
1972
  }
1973
1973
  function append_dev(target, node) {
1974
1974
  dispatch_dev('SvelteDOMInsert', { target, node });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte",
3
- "version": "3.46.5",
3
+ "version": "3.46.6",
4
4
  "description": "Cybernetically enhanced web apps",
5
5
  "module": "index.mjs",
6
6
  "main": "index",
@@ -16,7 +16,7 @@
16
16
  "transition",
17
17
  "easing",
18
18
  "motion",
19
- "svelte",
19
+ "action",
20
20
  "README.md"
21
21
  ],
22
22
  "exports": {