@nipe-solutions/flex-layout-codemod 2.0.0-beta.2 → 2.0.0-beta.3
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 +6 -0
- package/README.md +22 -137
- package/dist/cli.js +3 -2
- package/dist/cli.js.map +1 -1
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nipe-solutions/flex-layout-codemod",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.3",
|
|
4
4
|
"description": "A safety-first codemod for migrating Angular Flex-Layout templates to native CSS or Tailwind CSS.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -38,7 +38,8 @@
|
|
|
38
38
|
"format": "prettier --check .",
|
|
39
39
|
"format:write": "prettier --write .",
|
|
40
40
|
"verify": "npm run format && npm run lint && npm run typecheck && npm run test:coverage && npm run build && npm run package:check",
|
|
41
|
-
"verify:website": "npm run format && npm run lint && npm run test:website && npm run typecheck:website && npm run verify:website-assets && npm run build:website && npm run verify:website-static && npm run test:e2e:website",
|
|
41
|
+
"verify:website": "npm run format && npm run lint && npm run test:website && npm run typecheck:website && npm run verify:website-assets && npm run verify:docs && npm run build:website && npm run verify:website-static && npm run test:e2e:website",
|
|
42
|
+
"verify:docs": "node scripts/verify-documentation-contract.mjs",
|
|
42
43
|
"verify:website-static": "node scripts/verify-website-static.mjs",
|
|
43
44
|
"package:check": "node scripts/verify-package.mjs",
|
|
44
45
|
"changeset": "changeset add",
|