Skip to content

Commit

Permalink
updates to gitignore, gulpfile and package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
amarzavery committed Mar 26, 2017
1 parent 3cb2cf3 commit 9e71c69
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 33 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ examples/.vs
examples/bin
.vs
TestResults/*
.vscode/*
./**/.vscode/*

# Node #
node_modules/
Expand Down
69 changes: 41 additions & 28 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ const mappings = {
'dir': 'analysisServices/lib',
'source': 'arm-analysisservices/2016-05-16/swagger/analysisservices.json',
},
'apiManagement': {
'dir': 'apiManagement/lib',
'source': 'azure-rest-api-specs/arm-apimanagement/compositeApiManagementClient.json',
'modeler': 'CompositeSwagger'
},
'authorization': {
'dir': 'authorizationManagement/lib',
'source': 'arm-authorization/2015-07-01/swagger/authorization.json',
Expand Down Expand Up @@ -73,14 +78,14 @@ const mappings = {
'dir': 'dataLake.Analytics/lib/account',
'source': 'arm-datalake-analytics/account/2016-11-01/swagger/account.json'
},
'datalake.analytics.job': {
'dir': 'dataLake.Analytics/lib/job',
'source': 'arm-datalake-analytics/job/2016-11-01/swagger/job.json'
},
'datalake.analytics.catalog': {
'dir': 'dataLake.Analytics/lib/catalog',
'source': 'arm-datalake-analytics/catalog/2016-11-01/swagger/catalog.json'
},
'datalake.analytics.job': {
'dir': 'dataLake.Analytics/lib/job',
'source': 'arm-datalake-analytics/job/2016-11-01/swagger/job.json'
},
'datalake.store.account': {
'dir': 'dataLake.Store/lib/account',
'source': 'arm-datalake-store/account/2016-11-01/swagger/account.json'
Expand Down Expand Up @@ -146,6 +151,14 @@ const mappings = {
'dir': 'logicManagement/lib',
'source': 'arm-logic/2016-06-01/swagger/logic.json',
},
'machinelearning.commitmentPlan': {
'dir': 'machinelearning/lib/commitmentPlan',
'source': 'arm-machinelearning/2016-05-01-preview/swagger/commitmentPlans.json'
},
'machinelearning.webservices': {
'dir': 'machinelearning/lib/webservices',
'source': 'arm-machinelearning/2016-05-01-preview/swagger/webservices.json'
},
'mediaServices': {
'dir': 'mediaServicesManagement/lib',
'source': 'arm-mediaservices/2015-10-01/swagger/media.json'
Expand Down Expand Up @@ -186,40 +199,40 @@ const mappings = {
'dir': 'relayManagement/lib',
'source': 'arm-relay/2016-07-01/swagger/relay.json'
},
'resource': {
'dir': 'resourceManagement/lib/resource',
'source': 'arm-resources/resources/2016-09-01/swagger/resources.json'
},
'resource.subscription': {
'dir': 'resourceManagement/lib/subscription',
'source': 'arm-resources/subscriptions/2016-06-01/swagger/subscriptions.json'
},
'resource.lock': {
'dir': 'resourceManagement/lib/lock',
'source': 'arm-resources/locks/2016-09-01/swagger/locks.json'
'resource.feature': {
'dir': 'resourceManagement/lib/feature',
'source': 'arm-resources/features/2015-12-01/swagger/features.json'
},
'resource.link': {
'dir': 'resourceManagement/lib/link',
'source': 'arm-resources/links/2016-09-01/swagger/links.json'
},
'resource.feature': {
'dir': 'resourceManagement/lib/feature',
'source': 'arm-resources/features/2015-12-01/swagger/features.json'
'resource.lock': {
'dir': 'resourceManagement/lib/lock',
'source': 'arm-resources/locks/2016-09-01/swagger/locks.json'
},
'resource.policy': {
'dir': 'resourceManagement/lib/policy',
'source': 'arm-resources/policy/2016-12-01/swagger/policy.json'
},
'resource': {
'dir': 'resourceManagement/lib/resource',
'source': 'arm-resources/resources/2016-09-01/swagger/resources.json'
},
'resource.subscription': {
'dir': 'resourceManagement/lib/subscription',
'source': 'arm-resources/subscriptions/2016-06-01/swagger/subscriptions.json'
},
'schedulerManagement': {
'dir': 'schedulerManagement2/lib',
'source': 'arm-scheduler/2016-03-01/swagger/scheduler.json'
},
'searchIndex': {
'dir': 'searchIndex/lib',
'search.index': {
'dir': 'search/lib/index',
'source': 'search/2016-09-01/swagger/searchindex.json'
},
'searchService': {
'dir': 'searchService/lib',
'search.service': {
'dir': 'searchService/lib/service',
'source': 'search/2016-09-01/swagger/searchservice.json'
},
'searchManagement': {
Expand All @@ -228,9 +241,13 @@ const mappings = {
},
'servermanagement': {
'dir': 'servermanagement/lib',
'source': 'arm-servermanagement/2015-07-01-preview/servermanagement.json'
'source': 'arm-servermanagement/2016-07-01-preview/servermanagement.json'
},
'servicebus.management': {
'serviceMap': {
'dir': 'serviceMapManagement/lib',
'source': 'arm-service-map/2015-11-01-preview/swagger/arm-service-map.json'
},
'servicebusManagement': {
'dir': 'serviceBusManagement2/lib',
'source': 'arm-servicebus/2015-08-01/swagger/servicebus.json'
},
Expand All @@ -243,10 +260,6 @@ const mappings = {
'source': 'servicefabric/2016-01-28/swagger/servicefabric.json',
'language': 'NodeJS'
},
'serviceMap': {
'dir': 'serviceMapManagement/lib',
'source': 'arm-service-map/2015-11-01-preview/swagger/arm-service-map.json'
},
'sql': {
'dir': 'sqlManagement2/lib',
'source': 'arm-sql/compositeSql.json',
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@
"adal-node": "^0.1.17",
"azure-storage-legacy": "0.9.14",
"glob": "^7.1.1",
"grunt": "~0.4",
"grunt-contrib-connect": "^0.10.1",
"grunt-contrib-symlink": "^0.3.0",
"grunt-devserver": "~0.6",
"grunt-jsdoc": "~0.6",
"grunt": "^1.0.1",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-symlink": "^1.0.0",
"grunt-devserver": "^0.6.0",
"grunt-jsdoc": "^2.1.0",
"grunt-gh-pages": "1.1.0",
"jshint": "2.9.4",
"minami": "git://github.com/devigned/minami#master",
Expand Down

0 comments on commit 9e71c69

Please sign in to comment.