2.3.2 • Published 4 years ago

can-migrate v2.3.2

Weekly downloads
9
License
MIT
Repository
github
Last release
4 years ago

can-migrate

npm version Build Status Greenkeeper badge

CLI & codemod scripts for upgrading to CanJS 3 to 6.

Usage

Check out the Using Codemods guide on canjs.com for an overview of this project, how to install can-migrate, how to use the CLI, and recommendations for how to migrate your app.

Generate template and tests

There is now a quick and easy way to create a transform and the associated tests and diff files. Running:

./bin/can-migrate-generate.js <folder> <transform> --can-version=6

Will either add the files to an existing folder or create a folder and add the files. It will create transform.js | transform-test.js | transform-input.js | transform-output.js as well as adding the information into the transforms.json.

transforms.json

There is one entry in the array per type of template/test required to generate the transforms. The current groups of transforms are:

  • Component Rename: rename parts of a component
  • can.extend: swap out extend for assign or deep-assign
  • can-data: swap out .data() for domData
  • Replace imports/requires: Replace existing import/require statements and replace any references in the code
  • Replace can.: Replace can. methods and add the corresponding import/require
[
  {
    "copy": [ // Copy these files from src
      {
        "input": "...", // Source filename
        "output: "...", // Destination filename
        "type": "fixture|test|transform" // Type of copy determines where the destination file ends up (more on that below)
      }
    ],
    "generate": [ // Generate output from the template in src using "transforms
      {
        "template": "...", // Source filename
        "outputPath: "...", // Destination filename
        "type": "fixture|test|transform" // Type of copy determines where the destination file ends up (more on that below)
      }
    ],
    "transforms": [
      {
        "shortName": "component", // Short name of the transform for debugging and template filename generation
        "oldSourceValues": [ // List of ways this component could be imported/required. Used to replace these with newer component import
          "can/component/",
          "can/component/component",
          "can/component/component.js"
        ],
        "newSourceValue": "can-component", // The new value of the import/require
        "exampleLocalName": "MyComponent" // The example local name to include in generate documentation
        "oldObjectName": "can", // Object name to look for
        "oldPropertyName": "addEvent", // Property name to look for
        "newPropertyName": addEventListener, // What should replace the object.property (false for nothing, could be a complex replacement like mutate.appendChild)
        "sourceValue": "can-construct" // Key to look up the configurable naming in config.json
      }
    ]
  }
]

Types

  • test: Copied to lib, file is added to test/test.js.
  • fixture : Copied to test/fixtures
  • transform: Copied to lib/transforms
2.3.2

4 years ago

2.3.1

4 years ago

2.3.0

5 years ago

2.3.0-pre.17

5 years ago

2.3.0-pre.16

5 years ago

2.3.0-pre.15

5 years ago

2.3.0-pre.14

5 years ago

2.3.0-pre.13

5 years ago

2.3.0-pre.12

5 years ago

2.3.0-pre.11

5 years ago

2.3.0-pre.10

5 years ago

2.3.0-pre.9

5 years ago

2.3.0-pre.8

5 years ago

2.3.0-pre.7

5 years ago

2.3.0-pre.6

5 years ago

2.3.0-pre.5

5 years ago

2.3.0-pre.4

5 years ago

2.3.0-pre.3

5 years ago

2.3.0-pre.2

5 years ago

2.3.0-pre.1

5 years ago

2.2.4

5 years ago

2.2.3

5 years ago

2.2.2

5 years ago

2.2.1

5 years ago

2.2.0

6 years ago

2.1.12

6 years ago

2.1.11

6 years ago

2.1.10

6 years ago

2.1.9

6 years ago

2.1.8

6 years ago

2.1.7

6 years ago

2.1.6

6 years ago

2.1.5

6 years ago

2.1.4

6 years ago

2.1.3

6 years ago

2.1.2

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.0.0

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago