Skip to content

Commit c41c3a3

Browse files
committed
Merge branch 'main' of github.com:matestack/matestack-ui-vuejs into main
2 parents a984df6 + eca7c41 commit c41c3a3

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

docs/getting-started/installation-update.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Add 'matestack-ui-vuejs' to your Gemfile
1010

1111
```ruby
12-
gem 'matestack-ui-vuejs'
12+
gem 'matestack-ui-vuejs', "~> 3.0.0.rc1"
1313
```
1414

1515
and run
@@ -46,7 +46,7 @@ will be shipped in `matestack-ui-vuejs` `3.1`
4646
Add 'matestack-ui-vuejs' to your `package.json` by running:
4747

4848
```
49-
$ yarn add matestack-ui-vuejs
49+
$ yarn add matestack-ui-vuejs@3.0.0-rc1
5050
```
5151

5252
This adds the npm package that provides the JavaScript corresponding to the matestack-ui-vuejs Ruby gem. Make sure that the npm package version matches the gem version. To find out what gem version you are using, you may use `bundle info matestack-ui-vuejs`.

docs/migrate-to-3.0.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,28 @@ If you've used reactivity features of `matestack-ui-core` 2.x you now have to in
1515
`Gemfile`
1616

1717
```ruby
18-
gem 'matestack-ui-core', '~> 3.0'
19-
gem 'matestack-ui-vuejs', '~> 3.0'
18+
gem 'matestack-ui-core', '~> 3.0.0.rc-1'
19+
gem 'matestack-ui-vuejs', '~> 3.0.0.rc-1'
2020
```
21+
2122
## Remove `matestack-ui-core` JavaScript package
2223

23-
- `matestack-ui-core` does not ship a JavaScript package anymore
24-
- please remove the package from your application and switch to `matestack-ui-vuejs` for the VueJs driven reactivity if required
24+
* `matestack-ui-core` does not ship a JavaScript package anymore
25+
* please remove the package from your application and switch to `matestack-ui-vuejs` for the VueJs driven reactivity if required
2526

2627
```
2728
yarn remove matestack-ui-core
2829
```
2930

30-
- and add `matestack-ui-vuejs`:
31+
* and add `matestack-ui-vuejs`:
3132

3233
`package.json`
3334

3435
```json
3536
{
3637
"name": "my-app",
3738
"dependencies": {
38-
"matestack-ui-vuejs": "^3.0.0", // <-- new package name
39+
"matestack-ui-vuejs": "^3.0.0-rc1", // <-- new package name
3940
"..."
4041
}
4142
}

0 commit comments

Comments
 (0)