1.0.0 • Published 6 years ago

okam-plugin-wx2swan v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

okam-plugin-wx2swan

weixin to swan for okam(small program framework)

use

npm install okam-plugin-wx2swan --save-dev
// your.config.js

{

    processors: {
        babel: {
            extnames: ['js']
        },

        wx2swan: {
            processor: 'okam-plugin-wx2swan',
            extnames: ['wxml', 'wxss']
        }
    },
    rules: [
        {
            match(file) {
                return file.isNpmWxCompScript;
            },
            processors: ['wx2swan']
        }
    ]

}