@farris/cli 1.0.5 → 1.0.6

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/ci/cli.js +3 -1
  2. package/package.json +1 -1
package/ci/cli.js CHANGED
@@ -107,7 +107,9 @@ function updateProjectPrereleaseVersion(projectPath) {
107
107
  // return childProcess.exec('git', ['push']);
108
108
  const branch = childProcess.execSync("git", ["rev-parse", "--abbrev-ref", "HEAD"]);
109
109
  console.log(`executing git push origin ${branch}`);
110
- return childProcess.exec("git", ["push", 'origin', branch]);
110
+ const url = `https://project_4166_bot:8sTE2mjQyAycz13EPJAA@git.iec.io/webadp/farris-ide.git/`
111
+ return childProcess.exec("git", ["push", url]);
112
+ // git push https://myusername:${PROJECT_ACCESS_TOKEN}@gitlab.mydomain.com/mygroup/myproject.git
111
113
  })
112
114
  }
113
115
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farris/cli",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Farris command line interface",
5
5
  "main": "index.js",
6
6
  "scripts": {