@contentstack/cli-cm-clone 1.2.0 → 1.3.0

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2022 Contentstack
3
+ Copyright (c) 2023 Contentstack
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -15,7 +15,7 @@ $ npm install -g @contentstack/cli-cm-clone
15
15
  $ csdx COMMAND
16
16
  running command...
17
17
  $ csdx (--version)
18
- @contentstack/cli-cm-clone/1.2.0 linux-x64 node-v16.19.0
18
+ @contentstack/cli-cm-clone/1.3.0 linux-x64 node-v16.19.1
19
19
  $ csdx --help [COMMAND]
20
20
  USAGE
21
21
  $ csdx COMMAND
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.2.0",
2
+ "version": "1.3.0",
3
3
  "commands": {
4
4
  "cm:stacks:clone": {
5
5
  "id": "cm:stacks:clone",
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@contentstack/cli-cm-clone",
3
3
  "description": "Contentstack stack clone plugin",
4
- "version": "1.2.0",
4
+ "version": "1.3.0",
5
5
  "author": "Contentstack",
6
6
  "bugs": "https://github.com/rohitmishra209/cli-cm-clone/issues",
7
7
  "dependencies": {
8
- "@contentstack/cli-cm-export": "^1.3.0",
9
- "@contentstack/cli-cm-import": "^1.3.0",
10
- "@contentstack/cli-command": "^1.1.0",
11
- "@contentstack/cli-utilities": "^1.1.0",
8
+ "@contentstack/cli-cm-export": "^1.4.0",
9
+ "@contentstack/cli-cm-import": "^1.4.0",
10
+ "@contentstack/cli-command": "^1.2.0",
11
+ "@contentstack/cli-utilities": "^1.2.0",
12
12
  "@contentstack/management": "^1.6.1",
13
13
  "async": "^3.2.4",
14
14
  "chalk": "^4.1.0",
@@ -20,19 +20,19 @@
20
20
  "winston": "^3.7.2"
21
21
  },
22
22
  "devDependencies": {
23
- "oclif": "^3.1.2",
24
23
  "@oclif/test": "^1.2.7",
25
24
  "chai": "^4.2.0",
26
25
  "eslint": "^8.18.0",
27
- "eslint-config-oclif": "^3.1.0",
26
+ "eslint-config-oclif": "^4.0.0",
28
27
  "globby": "^10.0.2",
29
- "jest": "^26.6.3",
28
+ "jest": "^29.4.2",
30
29
  "mocha": "^10.0.0",
31
30
  "nyc": "^15.1.0",
31
+ "oclif": "^3.1.2",
32
32
  "sinon": "^15.0.1"
33
33
  },
34
34
  "engines": {
35
- "node": ">=8.0.0"
35
+ "node": ">=14.0.0"
36
36
  },
37
37
  "files": [
38
38
  "/npm-shrinkwrap.json",
@@ -57,7 +57,8 @@
57
57
  "prepack": "oclif manifest && oclif readme",
58
58
  "test": "nyc --reporter=html mocha --forbid-only \"test/**/*.test.js\"",
59
59
  "posttest": "eslint .",
60
- "version": "oclif readme && git add README.md"
60
+ "version": "oclif readme && git add README.md",
61
+ "clean": "rm -rf ./node_modules tsconfig.build.tsbuildinfo"
61
62
  },
62
63
  "csdxConfig": {
63
64
  "expiredCommands": {
@@ -1,5 +1,5 @@
1
- const { Command, flags } = require('@contentstack/cli-command');
2
- const { configHandler } = require('@contentstack/cli-utilities');
1
+ const { Command } = require('@contentstack/cli-command');
2
+ const { configHandler, flags } = require('@contentstack/cli-utilities');
3
3
  const { CloneHandler } = require('../../../lib/util/clone-handler');
4
4
  let config = require('../../../lib/util/dummyConfig.json');
5
5
  const path = require('path');