Skip to content

Commit

Permalink
Update tools
Browse files Browse the repository at this point in the history
  • Loading branch information
retgits committed Dec 5, 2017
1 parent cd8bcf3 commit 74afd2d
Show file tree
Hide file tree
Showing 42 changed files with 3,037 additions and 1,831 deletions.
4 changes: 0 additions & 4 deletions tools/.angulardoc.json

This file was deleted.

3 changes: 0 additions & 3 deletions tools/.babelrc

This file was deleted.

26 changes: 26 additions & 0 deletions tools/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"env": {
"browser": false,
"commonjs": true,
"es6": true,
"node": true
},
"extends": "google",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"rules": {
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-undef": "warn",
"no-unreachable": "warn",
"no-unused-vars": "warn",
"constructor-super": "warn",
"valid-typeof": "warn",
"linebreak-style": 0,
"switch-colon-spacing": 0
}
}
3 changes: 3 additions & 0 deletions tools/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/temp/**
/testapp
*.tgz
92 changes: 92 additions & 0 deletions tools/config/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
{
"version": "0.0.1",
"main":{
"description": "Help developers with the Web Integrator SDK"
},
"commands":{
"sdk":{
"command": "sdk",
"description": "Download, unpack or update the SDK",
"parameters": {
"location": {
"name": "--location <location>",
"description": "The location where the Web Integrator SDK should be unpacked"
},
"clean": {
"name": "--clean",
"description": "Clean up the downloaded files after unzipping"
}
},
"get": {
"name": "get",
"description": "Download the latest SDK from GitHub"
}
},
"init":{
"command": "init",
"description": "Create a new extension for Web Integrator",
"parameters": {
"location": {
"name": "--location <location>",
"description": "The location where the extension will be created"
},
"category": {
"name": "--category <category>",
"description": "The category for the extension"
}
}
},
"add":{
"command": "add",
"description": "Add an activity or connector to your extension",
"parameters": {
"location": {
"name": "--location [location]",
"description": "The root location of the extension, will default to this folder if not set"
},
"category": {
"name": "--category [category]",
"description": "The category of the extension, will default to the name of this folder if not set"
},
"name": {
"name": "--name <name>",
"description": "The name of the connector or activity"
},
"author": {
"name": "--author <author>",
"description": "The author of the connector or activity"
},
"version": {
"name": "--ver [version]",
"description": "The version of the connector or activity, will default to 0.0.1 if not set"
},
"typescript": {
"name": "--activityTypescript",
"description": "Create the TypeScript templates for a new activity"
}
},
"connector": {
"name": "connector",
"description": "Add a connector to your extension"
},
"activity": {
"name": "activity",
"description": "Add an activity to your extension"
}
},
"package":{
"command": "package",
"description": "Create a zip file of your extension",
"parameters": {
"location": {
"name": "--location [location]",
"description": "The root location of the extension, will default to this folder if not set"
},
"target": {
"name": "--target [target]",
"description": "The target location for the zip file, will create a new folder in the parent dir if not set"
}
}
}
}
}
58 changes: 0 additions & 58 deletions tools/gulpfile.babel.js

This file was deleted.

14 changes: 0 additions & 14 deletions tools/license.txt

This file was deleted.

Loading

0 comments on commit 74afd2d

Please sign in to comment.