@ukic/codemod 1.0.0-alpha.6 → 1.0.0-alpha.7
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 +4 -0
- package/README.md +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.0.0-alpha.7](https://github.com/mi6/ic-ui-kit/compare/@ukic/codemod@1.0.0-alpha.6...@ukic/codemod@1.0.0-alpha.7) (2025-04-08)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @ukic/codemod
|
|
9
|
+
|
|
6
10
|
# [1.0.0-alpha.6](https://github.com/mi6/ic-ui-kit/compare/@ukic/codemod@1.0.0-alpha.5...@ukic/codemod@1.0.0-alpha.6) (2025-03-19)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @ukic/codemod
|
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ Given a directory, it will scan over files and find any relevant ICDS components
|
|
|
14
14
|
This package will be usable as an executable requiring a directory and optional test boolean argument to cover tests
|
|
15
15
|
|
|
16
16
|
```console
|
|
17
|
-
- npx @ukic/codemod <dir> <test>
|
|
17
|
+
- npx @ukic/codemod@next <dir> <test>
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
### Options:
|
|
@@ -31,11 +31,11 @@ This package will be usable as an executable requiring a directory and optional
|
|
|
31
31
|
### Examples:
|
|
32
32
|
With tests
|
|
33
33
|
```console
|
|
34
|
-
- npx @ukic/codemod --dir ./#path/app/src/components --test true
|
|
34
|
+
- npx @ukic/codemod@next --dir ./#path/app/src/components --test true
|
|
35
35
|
```
|
|
36
36
|
Without tests
|
|
37
37
|
```console
|
|
38
|
-
- npx @ukic/codemod --dir ./#path/app/src/components
|
|
38
|
+
- npx @ukic/codemod@next --dir ./#path/app/src/components
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
## Contributing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ukic/codemod",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.7",
|
|
4
4
|
"description": "Codemod tool to help assist users upgrading from v2 to v3 of the UKIC design system",
|
|
5
5
|
"bin": "./codemod.js",
|
|
6
6
|
"author": "mi6",
|
|
@@ -19,5 +19,5 @@
|
|
|
19
19
|
"access": "public",
|
|
20
20
|
"registry": "https://registry.npmjs.org/"
|
|
21
21
|
},
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "90dbbe821cb1ed1dd483f2960367f5e1b435ad8d"
|
|
23
23
|
}
|