Skip to content

Commit 890d4aa

Browse files
authored
Merge pull request #80 from vadimkorr/feature/carousel-reactivity-engine
Move logic out of the component
2 parents 28f24f5 + 16dd673 commit 890d4aa

File tree

14 files changed

+472
-397
lines changed

14 files changed

+472
-397
lines changed

DEPLOYMENT.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
# How to publish new feature:
22

3+
1. Update version in `package.json` // docs depend on version
4+
35
in feature branch:
46

5-
1. Update unit tests
6-
2. Update storybook
7+
2. Update unit tests
8+
3. Update storybook
79

8-
3. Update docs in `README.md`
9-
4. Update docs in `src/docs`
10+
4. Update docs in `README.md`
11+
5. Update docs in `src/docs`
1012

1113
in main branch:
1214

13-
5. Update version in `package.json`
1415
6. `yarn`
1516
7. `yarn build:docs`
1617

17-
8. `npm publish`
18-
9. Merge feature branch
18+
8. Merge feature branch
19+
20+
9. `npm publish`
1921
10. Create release in GitHub

docs/index.css

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

docs/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
385 KB
Loading

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svelte-carousel",
3-
"version": "1.0.16",
3+
"version": "1.0.17-rc1",
44
"description": "Svelte carousel",
55
"main": "src/main.js",
66
"author": "vadimkorr",
@@ -53,5 +53,7 @@
5353
"svelte": "^3.31.2",
5454
"svelte-loader": "^2.13.6"
5555
},
56-
"dependencies": {}
56+
"dependencies": {
57+
"simply-reactive": "vadimkorr/simply-reactive#1.0.0"
58+
}
5759
}

0 commit comments

Comments
 (0)