Skip to content

Commit a28dfb2

Browse files
committed
Merge branch 'gh-3113' into gh-2086
2 parents aee2c9c + f4ca063 commit a28dfb2

File tree

34 files changed

+370
-140
lines changed

34 files changed

+370
-140
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
**/_actual.js
22
**/expected.js
33
test/*/samples/*/output.js
4+
node_modules
45

56
# output files
67
animate/*.js

.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"prefer-const": [2, { "destructuring": "all" }],
2222
"arrow-spacing": 2,
2323
"no-inner-declarations": 0,
24+
"require-atomic-updates": "off",
2425
"@typescript-eslint/indent": ["error", "tab", {
2526
"SwitchCase": 1,
2627
"ignoredNodes": ["TemplateLiteral"]

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Svelte changelog
22

3+
## 3.6.4
4+
5+
* Run `onMount` functions in correct order, and before initial `afterUpdate` functions ([#2281](https://github.com/sveltejs/svelte/issues/2281))
6+
* Fix code transformation for shorthand methods ([#2906](https://github.com/sveltejs/svelte/issues/2906))
7+
* Fix assignments in inline functions ([#3038](https://github.com/sveltejs/svelte/issues/3038))
8+
39
## 3.6.3
410

511
* Fix await block mounting inside removed if block ([#1496](https://github.com/sveltejs/svelte/issues/1496))

package-lock.json

Lines changed: 96 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svelte",
3-
"version": "3.6.3",
3+
"version": "3.6.4",
44
"description": "Cybernetically enhanced web apps",
55
"module": "index.mjs",
66
"main": "index",
@@ -58,16 +58,16 @@
5858
"devDependencies": {
5959
"@types/mocha": "^5.2.0",
6060
"@types/node": "=8",
61-
"@typescript-eslint/eslint-plugin": "^1.9.0",
62-
"@typescript-eslint/parser": "^1.9.0",
61+
"@typescript-eslint/eslint-plugin": "^1.11.0",
62+
"@typescript-eslint/parser": "^1.11.0",
6363
"acorn": "^6.1.1",
6464
"acorn-dynamic-import": "^4.0.0",
6565
"agadoo": "^1.0.1",
6666
"c8": "^3.4.0",
6767
"codecov": "^3.0.0",
6868
"css-tree": "1.0.0-alpha22",
69-
"eslint": "^5.16.0",
70-
"eslint-plugin-import": "^2.17.3",
69+
"eslint": "^6.0.1",
70+
"eslint-plugin-import": "^2.18.0",
7171
"estree-walker": "^0.6.1",
7272
"is-reference": "^1.1.1",
7373
"jsdom": "^12.2.0",

0 commit comments

Comments
 (0)