Skip to content
This repository was archived by the owner on Feb 20, 2019. It is now read-only.

Commit 3dfb24c

Browse files
committed
Merge branch 'hotfix/1.0.0-RC.2'
2 parents e28c47f + 83501ef commit 3dfb24c

2 files changed

Lines changed: 22 additions & 7 deletions

File tree

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sn-client-cli",
3-
"version": "1.0.0-RC.1",
4-
"description": "Command line tooling for Sense/NET ECM client",
3+
"version": "1.0.0-RC.2",
4+
"description": "Command line tooling for sense NET ECM client",
55
"main": "dist/index.js",
66
"bin": {
77
"sn-client": "./bin/sn-client.cmd"
@@ -27,7 +27,7 @@
2727
"typedoc": "gulp typedoc",
2828
"tslint": "tslint --project tsconfig.json ./src/**/*.ts && tslint --project tsconfig.test.json ./test/**/*.ts",
2929
"commit": "git-cz",
30-
"publish:development": "npm publish --tag development"
30+
"publish:development": "npm run build && npm t && npm publish --tag development"
3131
},
3232
"repository": {
3333
"type": "git",
@@ -52,7 +52,6 @@
5252
"commitizen": "^2.9.6",
5353
"mocha": "^3.4.1",
5454
"mocha-typescript": "^1.1.2",
55-
"prompt": "^1.0.0",
5655
"tslint": "^5.2.0",
5756
"typedoc": "^0.7.0",
5857
"typescript": "^2.3.2"
@@ -73,6 +72,7 @@
7372
"gulp-run": "^1.7.1",
7473
"gulp-typedoc": "^2.0.2",
7574
"path": "^0.12.7",
75+
"prompt": "^1.0.0",
7676
"sn-client-js": "2.0.0-RC.2"
7777
},
7878
"czConfig": {

sn.config.js

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,25 @@ module.exports = {
22
/**
33
* The Url for your repository, e.g.: 'localhost'
44
*/
5-
"RepositoryUrl": "localhost",
5+
//"RepositoryUrl": "localhost",
66

77
/**
8-
* The username to be used for authentication
8+
* The OData Token used by your content repository
99
*/
10-
"UserName": "admin"
10+
//"ODataToken": "OData.SVC",
11+
12+
/**
13+
* The template for JWT Token Generation in the localstorage / cookies. ${siteName} and ${tokenName} will be relpaced with the corresponding values.
14+
*/
15+
//"JwtTokenKeyTemplate":"sn-${siteName}-${tokenName}",
16+
17+
/**
18+
* Option how the JWT oken will be persisted. The valid options are "session" and "expiration"
19+
*/
20+
//"JwtTokenPersist": "expiration"
21+
22+
/**
23+
* The username to be used for authentication during type fetching
24+
*/
25+
//"UserName": "admin",
1126
}

0 commit comments

Comments
 (0)