@squiz/dxp-cli-next 1.2.0 → 1.2.1

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.
Files changed (2) hide show
  1. package/lib/dxp.js +2 -1
  2. package/package.json +12 -2
package/lib/dxp.js CHANGED
@@ -9,12 +9,13 @@ const pkg = require('../package.json');
9
9
  // this is a change to prompt deployment
10
10
  // another one
11
11
  // hopefully last one
12
+ // hopefully last one
12
13
  (0, update_notifier_1.default)({ pkg }).notify();
13
14
  const auth_1 = __importDefault(require("./auth"));
14
15
  const td_1 = __importDefault(require("./td"));
15
16
  const program = new commander_1.default.Command();
16
17
  const packageJson = require('../package.json');
17
- const version = packageJson.version;
18
+ const version = packageJson.version; /// hmm mmm m m m mm mmmmm
18
19
  program
19
20
  .name('dxp')
20
21
  .version(version)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squiz/dxp-cli-next",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "repository": {
5
5
  "url": "https://gitlab.squiz.net/developer-experience/dxp-cli-next"
6
6
  },
@@ -88,7 +88,17 @@
88
88
  "plugins": [
89
89
  "@semantic-release/commit-analyzer",
90
90
  "@semantic-release/release-notes-generator",
91
- "@semantic-release/npm"
91
+ "@semantic-release/npm",
92
+ [
93
+ "@semantic-release/git",
94
+ {
95
+ "assets": [
96
+ "docs",
97
+ "package.json"
98
+ ],
99
+ "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
100
+ }
101
+ ]
92
102
  ]
93
103
  }
94
104
  }