fixed: small typos

This commit is contained in:
gianlucaguarini 2021-10-16 19:51:26 +02:00
parent 12829a45a8
commit 59b84ff83e
3 changed files with 3 additions and 4 deletions

View File

@ -13,8 +13,7 @@ jobs:
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [14.x, 15.x]
steps:
- uses: actions/checkout@v2
- name: Local Unit Test ${{ matrix.node-version }}

View File

@ -7,7 +7,7 @@ A parcel plugin for riot.js
## Important
- If you are using Parcel < 1.0.0 please check the [this branch](https://github.com/riot/parcel-transformer-riot/tree/parcel-v1)
- If you are using Parcel < 2.0.0 please check the [this branch](https://github.com/riot/parcel-transformer-riot/tree/parcel-v1)
- If you are using Riot.js < 4.0.0 please check the [v3 branch](https://github.com/riot/parcel-transformer-riot/tree/v3)
## Using

View File

@ -1,5 +1,5 @@
import { component } from 'riot'
import MyComponent from './my-component.riot'
import { component } from 'riot'
component(MyComponent)(document.getElementById('root'))