Skip to content

Commit

Permalink
0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
halfnelson committed Aug 7, 2019
1 parent 3966340 commit 8f00219
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.2]
- Update to svelte 3.7.1 and add workaround for https://github.com/sveltejs/svelte/issues/3364

## [0.4.1]
- Pin against svelte 3.6.1 to resolve #44 while waiting for https://github.com/sveltejs/svelte/issues/3354

Expand Down
6 changes: 3 additions & 3 deletions demo/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"karma-nativescript-launcher": "0.4.0",
"karma-webpack": "3.0.5",
"mocha": "6.1.4",
"svelte": "3.6.1",
"svelte": "^3.7.1",
"nativescript-dev-webpack": "1.0.1",
"svelte-loader": "halfnelson/svelte-loader#fix-virtual-purge",
"svelte-native-preprocessor": "^0.1.4",
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svelte-native",
"version": "0.4.1",
"version": "0.4.2",
"description": "Svelte integration for NativeScript",
"private": true,
"repository": {
Expand All @@ -22,17 +22,17 @@
"license": "MIT",
"peerDependencies": {
"tns-core-modules": "^6.0.1",
"svelte": "3.6.1"
"svelte": "^3.7.1"
},
"devDependencies": {
"glob": "^7.1.3",
"rollup": "^1.17.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.1.0",
"rollup-plugin-typescript2": "^0.22.0",
"svelte": "3.6.1",
"svelte": "^3.7.1",
"tns-core-modules": "^6.0.1",
"typescript": "^3.5.3",
"rimraf": "^2.6.3"
}
}
}
5 changes: 4 additions & 1 deletion src/components/SlotComponent.svelte
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
<slot props={$$props} />
<slot props={p} />
<script>
$: p = $$props
</script>

0 comments on commit 8f00219

Please sign in to comment.