Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release-v1-beta-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release CLI Plugins (v1 Beta)

on:
push:
branches: [disable-v1-beta]
branches: [v1-beta]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .talismanrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ fileignoreconfig:
- filename: package-lock.json
checksum: c91b9e5fba1c84c0b6de15ad2f8cce698a5c781c9db31bebb7a3ad63ee88d9e1
- filename: pnpm-lock.yaml
checksum: 1b80993eacbc8bf861883d3e5382e6c708e68d4c0b881e31251999285e772e9b
checksum: f71f23aaad4ba997741b6c3cbc89822bd92e8b0c66c96bc30c199e2cbeaaad77
- filename: packages/contentstack-bootstrap/src/bootstrap/utils.ts
checksum: 6e6fb00bb11b03141e5ad27eeaa4af9718dc30520c3e73970bc208cc0ba2a7d2
- filename: .husky/pre-commit
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,17 @@
},
"private": true,
"scripts": {
"clean": "pnpm -r --filter './packages/*' run clean",
"clean:packages": "pnpm -r --filter './packages/*' run clean:packages",
"build": "pnpm -r --filter './packages/*' run build",
"test": "pnpm -r --filter './packages/*' run test",
"prepack": "pnpm -r --filter './packages/*' run prepack",
"bootstrap": "pnpm install",
"clean:modules": "rm -rf node_modules packages/**/node_modules",
"clean:lock": "rm -f pnpm-lock.yaml",
"clean:all": "pnpm store prune && rm -rf node_modules && pnpm run clean",
"clean:all": "pnpm store prune && rm -rf node_modules && pnpm run clean:packages",
"setup": "pnpm run clean:all && pnpm run bootstrap && pnpm run build",
"prepare": "npx husky && chmod +x .husky/pre-commit"
"prepare": "npx husky && chmod +x .husky/pre-commit",
"update:lockfile": "pnpm install --lockfile-only"
},
"license": "MIT",
"packageManager": "pnpm@10.28.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/contentstack-audit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentstack/cli-audit",
"version": "1.18.0",
"version": "1.19.0-beta.0",
"description": "Contentstack audit plugin",
"author": "Contentstack CLI",
"homepage": "https://github.com/contentstack/cli",
Expand All @@ -18,8 +18,8 @@
"/oclif.manifest.json"
],
"dependencies": {
"@contentstack/cli-command": "~1.7.2",
"@contentstack/cli-utilities": "~1.17.4",
"@contentstack/cli-command": "~1.8.0-beta.0",
"@contentstack/cli-utilities": "~1.18.0-beta.0",
"@oclif/core": "^4.3.0",
"@oclif/plugin-help": "^6.2.28",
"@oclif/plugin-plugins": "^5.4.54",
Expand Down Expand Up @@ -66,15 +66,15 @@
"repositoryPrefix": "<%- repo %>/blob/main/packages/contentstack-audit/<%- commandPath %>"
},
"scripts": {
"build": "pnpm compile",
"build": "pnpm compile && oclif manifest",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"compile": "shx rm -rf lib tsconfig.tsbuildinfo && tsc -b",
"compile": "tsc -b tsconfig.json",
"prepack": "pnpm compile && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"clean": "rm -rf ./lib ./node_modules .tsbuildinfo oclif.manifest.json",
"clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo",
"test:unit:report": "nyc --extension .ts mocha --forbid-only \"test/unit/**/*.test.ts\"",
"test:unit": "mocha --timeout 10000 --forbid-only \"test/unit/**/*.test.ts\""
},
Expand Down
16 changes: 8 additions & 8 deletions packages/contentstack-bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@contentstack/cli-cm-bootstrap",
"description": "Bootstrap contentstack apps",
"version": "1.18.4",
"version": "1.19.0-beta.0",
"author": "Contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"scripts": {
"build": "pnpm compile",
"clean": "rm -rf ./lib ./node_modules tsconfig.build.tsbuildinfo",
"build": "pnpm compile && oclif manifest",
"clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"postpack": "rm -f oclif.manifest.json",
"prepack": "pnpm compile && oclif manifest && oclif readme",
Expand All @@ -16,15 +16,15 @@
"test:report": "nyc --reporter=lcov mocha \"test/**/*.test.js\""
},
"dependencies": {
"@contentstack/cli-cm-seed": "~1.14.3",
"@contentstack/cli-command": "~1.7.2",
"@contentstack/cli-config": "~1.19.0",
"@contentstack/cli-utilities": "~1.17.4",
"@contentstack/cli-cm-seed": "~1.15.0-beta.0",
"@contentstack/cli-command": "~1.8.0-beta.0",
"@contentstack/cli-config": "~1.20.0-beta.0",
"@contentstack/cli-utilities": "~1.18.0-beta.0",
"@oclif/core": "^4.3.0",
"@oclif/plugin-help": "^6.2.37",
"inquirer": "8.2.7",
"mkdirp": "^1.0.4",
"tar": "^7.5.7"
"tar": "^7.5.10"
},
"devDependencies": {
"@oclif/test": "^4.1.13",
Expand Down
10 changes: 5 additions & 5 deletions packages/contentstack-branches/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@contentstack/cli-cm-branches",
"description": "Contentstack CLI plugin to do branches operations",
"version": "1.6.3",
"version": "1.7.0-beta.0",
"author": "Contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
"@contentstack/cli-command": "~1.7.2",
"@contentstack/cli-command": "~1.8.0-beta.0",
"@oclif/core": "^4.3.0",
"@oclif/plugin-help": "^6.2.28",
"@contentstack/cli-utilities": "~1.17.4",
"@contentstack/cli-utilities": "~1.18.0-beta.0",
"chalk": "^4.1.2",
"just-diff": "^6.0.2",
"lodash": "^4.17.23"
Expand All @@ -30,8 +30,8 @@
"typescript": "^4.9.5"
},
"scripts": {
"build": "pnpm compile",
"clean": "rm -rf ./lib ./node_modules tsconfig.build.tsbuildinfo",
"build": "pnpm compile && oclif manifest",
"clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"postpack": "rm -f oclif.manifest.json",
"prepack": "pnpm compile && oclif manifest && oclif readme",
Expand Down
8 changes: 4 additions & 4 deletions packages/contentstack-bulk-publish/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@contentstack/cli-cm-bulk-publish",
"description": "Contentstack CLI plugin for bulk publish actions",
"version": "1.10.7",
"version": "1.11.0-beta.0",
"author": "Contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
"@contentstack/cli-command": "~1.7.2",
"@contentstack/cli-config": "~1.19.0",
"@contentstack/cli-utilities": "~1.17.4",
"@contentstack/cli-command": "~1.8.0-beta.0",
"@contentstack/cli-config": "~1.20.0-beta.0",
"@contentstack/cli-utilities": "~1.18.0-beta.0",
"@oclif/core": "^4.3.0",
"@oclif/plugin-help": "^6.2.28",
"chalk": "^4.1.2",
Expand Down
14 changes: 7 additions & 7 deletions packages/contentstack-clone/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@contentstack/cli-cm-clone",
"description": "Contentstack stack clone plugin",
"version": "1.20.1",
"version": "1.21.0-beta.0",
"author": "Contentstack",
"bugs": "https://github.com/rohitmishra209/cli-cm-clone/issues",
"dependencies": {
"@colors/colors": "^1.6.0",
"@contentstack/cli-cm-export": "~1.23.2",
"@contentstack/cli-cm-import": "~1.31.3",
"@contentstack/cli-command": "~1.7.2",
"@contentstack/cli-utilities": "~1.17.4",
"@contentstack/cli-cm-export": "~1.24.0-beta.0",
"@contentstack/cli-cm-import": "~1.32.0-beta.0",
"@contentstack/cli-command": "~1.8.0-beta.0",
"@contentstack/cli-utilities": "~1.18.0-beta.0",
"@oclif/core": "^4.3.0",
"@oclif/plugin-help": "^6.2.28",
"chalk": "^4.1.2",
Expand Down Expand Up @@ -61,8 +61,8 @@
},
"repository": "https://github.com/contentstack/cli",
"scripts": {
"build": "pnpm compile",
"clean": "rm -rf ./lib ./node_modules tsconfig.build.tsbuildinfo",
"build": "pnpm compile && oclif manifest",
"clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"postpack": "rm -f oclif.manifest.json",
"prepack": "pnpm compile && oclif manifest && oclif readme",
Expand Down
10 changes: 5 additions & 5 deletions packages/contentstack-export-to-csv/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@contentstack/cli-cm-export-to-csv",
"description": "Export entries, taxonomies, terms, or organization users to CSV",
"version": "1.11.0",
"version": "1.12.0-beta.0",
"author": "Contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
"@contentstack/cli-command": "~1.7.2",
"@contentstack/cli-utilities": "~1.17.4",
"@contentstack/cli-command": "~1.8.0-beta.0",
"@contentstack/cli-utilities": "~1.18.0-beta.0",
"@oclif/core": "^4.8.0",
"@oclif/plugin-help": "^6.2.32",
"fast-csv": "^4.3.6",
Expand Down Expand Up @@ -65,8 +65,8 @@
},
"repository": "https://github.com/contentstack/cli",
"scripts": {
"build": "pnpm compile",
"clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo oclif.manifest.json",
"build": "pnpm compile && oclif manifest",
"clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
Expand Down
16 changes: 8 additions & 8 deletions packages/contentstack-export/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@contentstack/cli-cm-export",
"description": "Contentstack CLI plugin to export content from stack",
"version": "1.23.2",
"version": "1.24.0-beta.0",
"author": "Contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
"@contentstack/cli-command": "~1.7.2",
"@contentstack/cli-command": "~1.8.0-beta.0",
"@oclif/core": "^4.3.3",
"@contentstack/cli-variants": "~1.3.8",
"@contentstack/cli-utilities": "~1.17.4",
"@contentstack/cli-variants": "~1.4.0-beta.0",
"@contentstack/cli-utilities": "~1.18.0-beta.0",
"async": "^3.2.6",
"big-json": "^3.2.0",
"bluebird": "^3.7.2",
Expand All @@ -21,8 +21,8 @@
"winston": "^3.17.0"
},
"devDependencies": {
"@contentstack/cli-auth": "~1.7.3",
"@contentstack/cli-config": "~1.19.0",
"@contentstack/cli-auth": "~1.8.0-beta.0",
"@contentstack/cli-config": "~1.20.0-beta.0",
"@contentstack/cli-dev-dependencies": "~1.3.1",
"@oclif/plugin-help": "^6.2.28",
"@oclif/test": "^4.1.13",
Expand All @@ -46,8 +46,8 @@
"typescript": "^4.9.5"
},
"scripts": {
"build": "pnpm compile",
"clean": "rm -rf ./lib ./node_modules tsconfig.build.tsbuildinfo",
"build": "pnpm compile && oclif manifest",
"clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"postpack": "rm -f oclif.manifest.json",
"prepack": "pnpm compile && oclif manifest && oclif readme",
Expand Down
10 changes: 5 additions & 5 deletions packages/contentstack-import-setup/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@contentstack/cli-cm-import-setup",
"description": "Contentstack CLI plugin to setup the mappers and configurations for the import command",
"version": "1.7.3",
"version": "1.8.0-beta.0",
"author": "Contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
"@contentstack/cli-command": "~1.7.2",
"@contentstack/cli-utilities": "~1.17.4",
"@contentstack/cli-command": "~1.8.0-beta.0",
"@contentstack/cli-utilities": "~1.18.0-beta.0",
"@oclif/core": "^4.3.0",
"big-json": "^3.2.0",
"chalk": "^4.1.2",
Expand Down Expand Up @@ -40,8 +40,8 @@
"typescript": "^4.9.5"
},
"scripts": {
"build": "pnpm compile",
"clean": "rm -rf ./lib ./node_modules tsconfig.build.tsbuildinfo",
"build": "pnpm compile && oclif manifest",
"clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"postpack": "rm -f oclif.manifest.json",
"prepack": "pnpm compile && oclif manifest && oclif readme",
Expand Down
14 changes: 7 additions & 7 deletions packages/contentstack-import/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@contentstack/cli-cm-import",
"description": "Contentstack CLI plugin to import content into stack",
"version": "1.31.3",
"version": "1.32.0-beta.0",
"author": "Contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
"@contentstack/cli-audit": "~1.18.0",
"@contentstack/cli-command": "~1.7.2",
"@contentstack/cli-utilities": "~1.17.4",
"@contentstack/cli-variants": "~1.3.8",
"@contentstack/cli-audit": "~1.19.0-beta.0",
"@contentstack/cli-command": "~1.8.0-beta.0",
"@contentstack/cli-utilities": "~1.18.0-beta.0",
"@contentstack/cli-variants": "~1.4.0-beta.0",
"@oclif/core": "^4.3.0",
"big-json": "^3.2.0",
"bluebird": "^3.7.2",
Expand Down Expand Up @@ -45,8 +45,8 @@
"typescript": "^4.9.5"
},
"scripts": {
"build": "pnpm compile",
"clean": "rm -rf ./lib ./node_modules tsconfig.build.tsbuildinfo",
"build": "pnpm compile && oclif manifest",
"clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"postpack": "rm -f oclif.manifest.json",
"prepack": "pnpm compile && oclif manifest && oclif readme",
Expand Down
10 changes: 5 additions & 5 deletions packages/contentstack-migration/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@contentstack/cli-migration",
"version": "1.11.0",
"version": "1.12.0-beta.0",
"author": "@contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
"@contentstack/cli-command": "~1.7.2",
"@contentstack/cli-utilities": "~1.17.4",
"@contentstack/cli-command": "~1.8.0-beta.0",
"@contentstack/cli-utilities": "~1.18.0-beta.0",
"@oclif/core": "^4.3.0",
"@oclif/plugin-help": "^6.2.28",
"async": "^3.2.6",
Expand Down Expand Up @@ -53,7 +53,7 @@
},
"repository": "contentstack/cli",
"scripts": {
"build": "pnpm compile",
"build": "pnpm compile && oclif manifest",
"postpack": "rm -f oclif.manifest.json",
"generate-api-ref-md-doc": "nyc jsdoc2md ./src/modules/*.ts > ./docs/api-reference.md || true",
"compile": "tsc -b tsconfig.json",
Expand All @@ -63,7 +63,7 @@
"test:unit": "mocha --timeout 10000 --forbid-only \"test/unit/**/*.test.ts\"",
"test:unit:report": "nyc --extension .ts mocha --forbid-only \"test/unit/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"clean": "rm -rf ./lib ./node_modules tsconfig.build.tsbuildinfo"
"clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo"
},
"csdxConfig": {
"expiredCommands": {
Expand Down
14 changes: 7 additions & 7 deletions packages/contentstack-seed/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@contentstack/cli-cm-seed",
"description": "create a Stack from existing content types, entries, assets, etc.",
"version": "1.14.3",
"version": "1.15.0-beta.0",
"author": "Contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
"@contentstack/cli-cm-import": "~1.31.3",
"@contentstack/cli-command": "~1.7.2",
"@contentstack/cli-utilities": "~1.17.4",
"@contentstack/cli-cm-import": "~1.32.0-beta.0",
"@contentstack/cli-command": "~1.8.0-beta.0",
"@contentstack/cli-utilities": "~1.18.0-beta.0",
"inquirer": "8.2.7",
"mkdirp": "^1.0.4",
"tar": "^7.5.7",
"tar": "^7.5.10",
"tmp": "^0.2.5"
},
"devDependencies": {
Expand Down Expand Up @@ -67,8 +67,8 @@
"postpack": "rm -f oclif.manifest.json",
"prepack": "pnpm compile && oclif manifest && oclif readme",
"version": "oclif readme && git add README.md",
"clean": "rm -rf ./lib ./node_modules tsconfig.build.tsbuildinfo",
"clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"build": "pnpm compile"
"build": "pnpm compile && oclif manifest"
}
}
Loading
Loading