Skip to content

Commit f45e2b7

Browse files
authored
Implement reactive assignments (sveltejs#1839)
This also includes elements of RFCs 2 and 3
1 parent 85b731c commit f45e2b7

File tree

1,566 files changed

+14779
-17627
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,566 files changed

+14779
-17627
lines changed

.gitignore

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
.DS_Store
22
.nyc_output
33
node_modules
4+
*.map
45
/cli/
56
/compiler/
67
/ssr/
7-
/shared.js
8+
/internal.js
9+
/compiler.js
810
/scratch/
911
/coverage/
1012
/coverage.lcov/
@@ -13,7 +15,7 @@ node_modules
1315
/test/sourcemaps/samples/*/output.js.map
1416
/test/sourcemaps/samples/*/output.css
1517
/test/sourcemaps/samples/*/output.css.map
16-
/src/compile/shared.ts
1718
/store.umd.js
1819
/yarn-error.log
19-
_actual*.*
20+
_actual*.*
21+
_*/

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: node_js
22
node_js:
3-
- "6"
43
- "node"
54

65
env:

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ init:
1010
environment:
1111
matrix:
1212
# node.js
13-
- nodejs_version: 6
13+
- nodejs_version: 10
1414

1515
install:
1616
- ps: Install-Product node $env:nodejs_version

index.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export {
2+
onMount,
3+
onDestroy,
4+
beforeUpdate,
5+
afterUpdate,
6+
createEventDispatcher
7+
} from './internal.js';

0 commit comments

Comments
 (0)