@atlaskit/codemod-cli 0.27.3 → 0.27.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/dist/cjs/main.js +1 -1
- package/dist/esm/main.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/codemod-cli
|
|
2
2
|
|
|
3
|
+
## 0.27.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#127093](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/127093)
|
|
8
|
+
[`1378ea7a99ce1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1378ea7a99ce1) -
|
|
9
|
+
Upgrades `jscodeshift` to handle generics properly.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 0.27.3
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/dist/cjs/main.js
CHANGED
|
@@ -357,7 +357,7 @@ function _main() {
|
|
|
357
357
|
case 4:
|
|
358
358
|
_yield$parseArgs = _context6.sent;
|
|
359
359
|
packages = _yield$parseArgs.packages;
|
|
360
|
-
_process$env$_PACKAGE = "0.27.
|
|
360
|
+
_process$env$_PACKAGE = "0.27.4", _PACKAGE_VERSION_ = _process$env$_PACKAGE === void 0 ? '0.0.0-dev' : _process$env$_PACKAGE;
|
|
361
361
|
logger.log(_chalk.default.bgBlue(_chalk.default.black("\uD83D\uDCDA Atlassian-Frontend codemod library @ ".concat(_PACKAGE_VERSION_, " \uD83D\uDCDA"))));
|
|
362
362
|
if (packages && packages.length > 0) {
|
|
363
363
|
logger.log(_chalk.default.gray("Searching for codemods for newer versions of the following packages: ".concat(packages.map(function (pkg) {
|
package/dist/esm/main.js
CHANGED
|
@@ -350,7 +350,7 @@ function _main() {
|
|
|
350
350
|
case 4:
|
|
351
351
|
_yield$parseArgs = _context6.sent;
|
|
352
352
|
packages = _yield$parseArgs.packages;
|
|
353
|
-
_process$env$_PACKAGE = "0.27.
|
|
353
|
+
_process$env$_PACKAGE = "0.27.4", _PACKAGE_VERSION_ = _process$env$_PACKAGE === void 0 ? '0.0.0-dev' : _process$env$_PACKAGE;
|
|
354
354
|
logger.log(chalk.bgBlue(chalk.black("\uD83D\uDCDA Atlassian-Frontend codemod library @ ".concat(_PACKAGE_VERSION_, " \uD83D\uDCDA"))));
|
|
355
355
|
if (packages && packages.length > 0) {
|
|
356
356
|
logger.log(chalk.gray("Searching for codemods for newer versions of the following packages: ".concat(packages.map(function (pkg) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/codemod-cli",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.4",
|
|
4
4
|
"description": "A cli for distributing codemods for atlassian-frontend components and services",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"bin": "./bin/codemod-cli.js",
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@atlaskit/codemod-utils": "^4.2.0",
|
|
42
|
-
"@atlaskit/tokens": "^4.
|
|
42
|
+
"@atlaskit/tokens": "^4.5.0",
|
|
43
43
|
"@babel/runtime": "^7.0.0",
|
|
44
44
|
"@codeshift/utils": "^0.2.4",
|
|
45
45
|
"@hypermod/utils": "^0.4.2",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"color-diff": "^1.2.0",
|
|
50
50
|
"enquirer": "^2.3.4",
|
|
51
51
|
"glob": "9.0.0",
|
|
52
|
-
"jscodeshift": "^0.
|
|
52
|
+
"jscodeshift": "^0.16.1",
|
|
53
53
|
"meow": "^8.1.1",
|
|
54
54
|
"projector-spawn": "^1.0.1",
|
|
55
55
|
"read-pkg-up": "^7.0.1",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"uuid": "^3.1.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@af/formatting": "
|
|
61
|
+
"@af/formatting": "^0.0.4",
|
|
62
62
|
"@types/color-diff": "^1.2.1",
|
|
63
63
|
"prettier": "^3.2.5",
|
|
64
64
|
"ts-node": "^10.9.1",
|