Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/toshi-toma/closure-codemod

Closure codemod scripts
https://github.com/toshi-toma/closure-codemod

Last synced: 11 days ago
JSON representation

Closure codemod scripts

Lists

README

        

[![npm version][npm-image]][npm-url]
![Test](https://github.com/toshi-toma/closure-codemod/workflows/Test/badge.svg?branch=master)
![License][license]

# closure-codemod

Closure Libray codemod scripts

## Setup & Run

```
$ npm install -D jscodeshift @toshi-toma/closure-codemod
$ jscodeshift -t node_modules/@toshi-toma/closure-codemod/transforms/.ts
```

You can use the `-d` option for a dry-run and use `-p` to print the output for comparison.

```
$ jscodeshift -t node_modules/@toshi-toma/closure-codemod/transforms/.ts -d -p
```

## Included Scripts

### `goog-is-to-native-code`

```
$ jscodeshift -t node_modules/@toshi-toma/closure-codemod/transforms/goog-is-to-native-code.ts
```

> Delete goog.is(Def|Null|DefAndNotNull|String|Boolean|Number) from base.js.
https://github.com/google/closure-library/releases/tag/v20200204

### `goog-object-to-native-code`

```
$ jscodeshift -t node_modules/@toshi-toma/closure-codemod/transforms/goog-object-to-native-code.ts
```

> Deprecate goog.json.parse. Use JSON.parse.
https://github.com/google/closure-library/commit/01e59bb44b306201078fd40eafcc8d36734cfee3

#### Options
This script handle `quotes` option.

- `single` - default. transform with single quote.
- `double` - transform with double quote

```
$ jscodeshift -t node_modules/@toshi-toma/closure-codemod/transforms/goog-object-to-native-code.ts --quotes=single
```

[npm-image]: https://img.shields.io/npm/v/@toshi-toma/closure-codemod.svg
[npm-url]: https://npmjs.org/package/@toshi-toma/closure-codemod
[license]: https://img.shields.io/npm/l/@toshi-toma/closure-codemod.svg