babel-plugin-sync

0.1.0 • Public • Published

babel-plugin-sync

NPM version NPM downloads CircleCI donate chat

Install

yarn add babel-plugin-sync --dev

Usage

With .babelrc:

{
  "plugins": [
    "sync"
  ]
}

In:

class MyModule {
  // $MakeMeSync
  async read() {
    await this.resolve('./file')
  }
}

Out:

class MyModule {
  async read() {
    await this.resolve('./file')
  }
  readSync() {
    this.resolveSync('./file')
  }
}

Make returnStatement sync

We don't know if it's safe to make the return statement sync at all, if you're sure about this, use // $MakeMeSync mark explicitly.

class Foo {
  // $MakeMeSync
  async foo() {
-    return this.bar()
+    return this.bar() // $MakeMeSync
  }
}

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

babel-plugin-sync © egoist, Released under the MIT License.
Authored and maintained by egoist with help from contributors (list).

github.com/egoist · GitHub @egoist · Twitter @_egoistlily

/babel-plugin-sync/

    Package Sidebar

    Install

    npm i babel-plugin-sync

    Weekly Downloads

    2

    Version

    0.1.0

    License

    MIT

    Unpacked Size

    5.26 kB

    Total Files

    5

    Last publish

    Collaborators

    • egoist