Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 91c0f4c0b2 | |||
|
|
8903b91d44 | ||
|
|
552f3af503 | ||
|
|
dff002586d | ||
|
|
141269364e | ||
|
|
57c28c90d6 | ||
|
|
d73842fa0d | ||
|
|
fd04821b33 | ||
|
|
c4ab1cd473 | ||
|
|
2b94698f2f | ||
|
|
d8955bc96b | ||
|
|
b6c95134b4 | ||
|
|
1e04cae511 | ||
|
|
59b84ff83e | ||
|
|
12829a45a8 | ||
|
|
4ee51ea76f | ||
|
|
08e9c11480 |
@ -1,7 +1,7 @@
|
|||||||
extends: eslint-config-riot
|
extends: eslint-config-riot
|
||||||
|
|
||||||
parserOptions:
|
parserOptions:
|
||||||
ecmaVersion: 2018
|
ecmaVersion: 2021
|
||||||
sourceType: 'module'
|
sourceType: 'module'
|
||||||
|
|
||||||
globals:
|
globals:
|
||||||
@ -9,4 +9,4 @@ globals:
|
|||||||
expect: true
|
expect: true
|
||||||
|
|
||||||
rules:
|
rules:
|
||||||
fp/no-class: off
|
fp/no-class: off
|
||||||
|
|||||||
3
.github/workflows/test.yml
vendored
3
.github/workflows/test.yml
vendored
@ -13,8 +13,7 @@ jobs:
|
|||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
node-version: [10.x, 12.x, 14.x, 15.x]
|
node-version: [14.x, 15.x]
|
||||||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Local Unit Test ${{ matrix.node-version }}
|
- name: Local Unit Test ${{ matrix.node-version }}
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,5 @@
|
|||||||
node_modules
|
node_modules
|
||||||
|
/test/.parcel-cache/
|
||||||
/test/package-lock.json
|
/test/package-lock.json
|
||||||
/test/dist
|
/test/dist
|
||||||
.idea
|
.idea
|
||||||
|
|||||||
31
Readme.md
31
Readme.md
@ -3,17 +3,30 @@
|
|||||||
[![NPM downloads][npm-downloads-image]][npm-url]
|
[![NPM downloads][npm-downloads-image]][npm-url]
|
||||||
[![MIT License][license-image]][license-url]
|
[![MIT License][license-image]][license-url]
|
||||||
|
|
||||||
A parcel plugin for riot.js
|
The Riot.js official parcel transformer.
|
||||||
|
|
||||||
## Important
|
## Important
|
||||||
|
|
||||||
If you are using Riot.js < 4.0.0 please check the [v3 branch](https://github.com/riot/parcel-plugin-riot/tree/v3)
|
- 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
|
## Using
|
||||||
Add parcel-plugin-riot to your project.
|
|
||||||
|
### 1. Add the riot parcel transformer to your project.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm i -D @riotjs/parcel-plugin-riot @riotjs/compiler
|
npm i -D @riotjs/parcel-transformer-riot @riotjs/compiler
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2. Configure your .parcelrc file
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"extends": "@parcel/config-default",
|
||||||
|
"transformers": {
|
||||||
|
"*.riot": ["@riotjs/parcel-transformer-riot"]
|
||||||
|
}
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
-> You are ready!
|
-> You are ready!
|
||||||
@ -70,13 +83,13 @@ npm i @riotjs/hot-reload -D
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
[ci-image]:https://img.shields.io/github/workflow/status/riot/parcel-plugin-riot/test?style=flat-square
|
[ci-image]:https://img.shields.io/github/workflow/status/riot/parcel-transformer-riot/test?style=flat-square
|
||||||
[ci-url]:https://github.com/riot/parcel-plugin-riot/actions
|
[ci-url]:https://github.com/riot/parcel-transformer-riot/actions
|
||||||
|
|
||||||
[license-image]: https://img.shields.io/badge/license-MIT-000000.svg?style=flat-square
|
[license-image]: https://img.shields.io/badge/license-MIT-000000.svg?style=flat-square
|
||||||
[license-url]: LICENSE
|
[license-url]: LICENSE
|
||||||
|
|
||||||
[npm-version-image]: https://img.shields.io/npm/v/@riotjs/parcel-plugin-riot.svg?style=flat-square
|
[npm-version-image]: https://img.shields.io/npm/v/@riotjs/parcel-transformer-riot.svg?style=flat-square
|
||||||
[npm-downloads-image]: https://img.shields.io/npm/dm/@riotjs/parcel-plugin-riot.svg?style=flat-square
|
[npm-downloads-image]: https://img.shields.io/npm/dm/@riotjs/parcel-transformer-riot.svg?style=flat-square
|
||||||
[npm-url]: https://npmjs.org/package/@riotjs/parcel-plugin-riot
|
[npm-url]: https://npmjs.org/package/@riotjs/parcel-transformer-riot
|
||||||
|
|
||||||
|
|||||||
46
RiotAsset.js
46
RiotAsset.js
@ -1,46 +0,0 @@
|
|||||||
const { compile } = require('@riotjs/compiler')
|
|
||||||
const { Asset } = require('parcel-bundler')
|
|
||||||
const { relative, dirname } = require('path')
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generate the hmr code depending on the tag generated by the compiler
|
|
||||||
* @param {string} path - path to the component file
|
|
||||||
* @returns {string} the code needed to handle the riot hot reload
|
|
||||||
*/
|
|
||||||
function hotReload(path) {
|
|
||||||
return `;(() => {
|
|
||||||
if (module.hot) {
|
|
||||||
const hotReload = require('@riotjs/hot-reload').default
|
|
||||||
module.hot.accept()
|
|
||||||
if (module.hot.data) {
|
|
||||||
const component = require('./${path}').default;
|
|
||||||
hotReload(component)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})()`
|
|
||||||
}
|
|
||||||
|
|
||||||
class RiotAsset extends Asset {
|
|
||||||
constructor(name, pkg, options) {
|
|
||||||
super(name, pkg, options)
|
|
||||||
this.type = 'js'
|
|
||||||
}
|
|
||||||
|
|
||||||
async generate() {
|
|
||||||
const options = (await this.getConfig(['.riotrc', '.riotrc.js', 'riot.config.js'])) || {}
|
|
||||||
const {code, map} = compile(this.contents, {
|
|
||||||
file: this.relativeName,
|
|
||||||
...options
|
|
||||||
})
|
|
||||||
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
sourceMap: this.options.sourceMaps ? map : false,
|
|
||||||
type: 'js',
|
|
||||||
value: `${code}${options.hot ? hotReload(relative(dirname(this.name), this.relativeName)) : ''}`
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = RiotAsset
|
|
||||||
64
index.js
64
index.js
@ -1,3 +1,63 @@
|
|||||||
module.exports = function(bundler) {
|
const { compile } = require('@riotjs/compiler')
|
||||||
bundler.addAssetType('riot', require.resolve('./RiotAsset'))
|
const { Transformer } = require('@parcel/plugin')
|
||||||
|
const SourceMap = require('@parcel/source-map').default
|
||||||
|
const { basename } = require('path')
|
||||||
|
|
||||||
|
const CONFIG_FILES = ['.riotrc', '.riotrc.js', 'riot.config.js']
|
||||||
|
const PACKAGE_KEY = 'riot'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generate the hmr code depending on the tag generated by the compiler
|
||||||
|
* @param {string} path - path to the component file
|
||||||
|
* @returns {string} the code needed to handle the riot hot reload
|
||||||
|
*/
|
||||||
|
function hotReload(path) {
|
||||||
|
return `;(() => {
|
||||||
|
if (module.hot) {
|
||||||
|
const hotReload = require('@riotjs/hot-reload').default
|
||||||
|
module.hot.accept()
|
||||||
|
if (module.hot.data) {
|
||||||
|
const component = require('./${path}').default;
|
||||||
|
hotReload(component)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})()`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
module.exports = new Transformer({
|
||||||
|
async loadConfig({config}) {
|
||||||
|
const riotConfig = await config.getConfig(
|
||||||
|
CONFIG_FILES,
|
||||||
|
{
|
||||||
|
packageKey: PACKAGE_KEY
|
||||||
|
}
|
||||||
|
)
|
||||||
|
const shouldInvalidateOnStartup = riotConfig &&
|
||||||
|
riotConfig?.filePath?.endsWith('.js') ||
|
||||||
|
riotConfig?.filePath?.endsWith(CONFIG_FILES[0])
|
||||||
|
|
||||||
|
if (shouldInvalidateOnStartup) {
|
||||||
|
config.invalidateOnStartup()
|
||||||
|
}
|
||||||
|
|
||||||
|
return riotConfig?.contents ?? {}
|
||||||
|
},
|
||||||
|
async transform({asset, config, options}) {
|
||||||
|
const source = await asset.getCode()
|
||||||
|
const sourceMap = new SourceMap(options.projectRoot)
|
||||||
|
|
||||||
|
const {code, map} = compile(source, {
|
||||||
|
file: asset.filePath,
|
||||||
|
...config
|
||||||
|
})
|
||||||
|
|
||||||
|
// the suffix will be added only for the HMR
|
||||||
|
const suffix = config?.hot ? hotReload(basename(asset.filePath)) : ''
|
||||||
|
|
||||||
|
asset.type = 'js'
|
||||||
|
asset.setCode(`${code}${suffix}`)
|
||||||
|
asset.setMap(sourceMap.addVLQMap(map))
|
||||||
|
|
||||||
|
return [asset]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|||||||
19551
package-lock.json
generated
19551
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
22
package.json
22
package.json
@ -1,24 +1,30 @@
|
|||||||
{
|
{
|
||||||
"name": "@riotjs/parcel-plugin-riot",
|
"name": "@riotjs/parcel-transformer-riot",
|
||||||
"version": "6.0.0",
|
"version": "7.0.2",
|
||||||
"description": "A parcel plugin for riot.js",
|
"description": "The Riot.js official parcel transformer",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepare": "npm i --no-save @riotjs/compiler@5 parcel-bundler@1 @riotjs/hot-reload@5 riot@5",
|
"prepare": "npm i --no-save @riotjs/compiler@6 @riotjs/hot-reload@6 riot@6",
|
||||||
"test": "npx eslint *.js && npm run test-bundle",
|
"test": "npx eslint *.js && npm run test-bundle",
|
||||||
"test-bundle": "cd test && npm i"
|
"test-bundle": "cd test && npm i"
|
||||||
},
|
},
|
||||||
|
"engines": {
|
||||||
|
"parcel": "2.x"
|
||||||
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/andruschka/parcel-plugin-riot"
|
"url": "https://github.com/riot/parcel-plugin-riot"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@riotjs/compiler": "^6.0.0",
|
"@riotjs/compiler": "^6.0.4"
|
||||||
"parcel-bundler": "^1.9.4"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"eslint": "^7.30.0",
|
"eslint": "^8.1.0",
|
||||||
"eslint-config-riot": "^3.0.0"
|
"eslint-config-riot": "^3.0.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@parcel/plugin": "^2.0.0",
|
||||||
|
"@parcel/source-map": "^2.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
6
test/.parcelrc
Normal file
6
test/.parcelrc
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"extends": "@parcel/config-default",
|
||||||
|
"transformers": {
|
||||||
|
"*.riot": ["@riotjs/parcel-transformer-riot"]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -8,6 +8,6 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
<script src="./main.js"></script>
|
<script type="module" src="./main.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -1,3 +1,5 @@
|
|||||||
import MyComponent from './my-component.riot'
|
import MyComponent from './my-component.riot'
|
||||||
|
import { component } from 'riot'
|
||||||
|
|
||||||
export default MyComponent
|
|
||||||
|
component(MyComponent)(document.getElementById('root'))
|
||||||
|
|||||||
@ -1,17 +1,20 @@
|
|||||||
{
|
{
|
||||||
"name": "riot-parcel-test",
|
"name": "riot-parcel-test",
|
||||||
"main": "index.html",
|
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"postinstall": "parcel build index.html --no-cache"
|
"postinstall": "parcel build index.html --no-cache"
|
||||||
},
|
},
|
||||||
|
"alias": {
|
||||||
|
"./test/*.riot": "./$1"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"parcel-bundler": "^1.11.0"
|
"riot": "^6.0.0",
|
||||||
|
"@riotjs/hot-reload": "^6.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@riotjs/compiler": "^4.0.0",
|
"parcel": "^2.0.0",
|
||||||
"@riotjs/hot-reload": "^4.0.0-rc.1",
|
"@parcel/config-default": "^2.0.0",
|
||||||
"@riotjs/parcel-plugin-riot": "file:../",
|
"@riotjs/compiler": "^6.0.0",
|
||||||
"riot": "^4.0.0-rc.13"
|
"@riotjs/parcel-transformer-riot": "file:../"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user