Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
569cbe9
fix: seperated generateSAM
DheerajGBhatt Dec 22, 2022
227f291
fix: seperated generateSAM and removed unwanted packages and files
DheerajGBhatt Dec 22, 2022
6d9de75
removed package-lock file
DheerajGBhatt Dec 22, 2022
224d738
proper naming convention for sam generate in index.js
DheerajGBhatt Dec 22, 2022
e43d7e9
fix : added types for generateSAM,getAppdata fully and partially for…
DheerajGBhatt Dec 23, 2022
d40464b
fix : added types for cliModuletoConfig,createStack and createStackRe…
DheerajGBhatt Dec 26, 2022
3a02387
fix : added return type to createStackResources function
DheerajGBhatt Dec 26, 2022
a035f47
fix : seperated addComponents and addModule , folder is restructured
DheerajGBhatt Dec 26, 2022
84a53dd
fix : added types file for addModule
DheerajGBhatt Dec 26, 2022
acf16e8
fix : formatted using prettier
DheerajGBhatt Dec 26, 2022
38cf51a
fix : removed dulicate functions
DheerajGBhatt Dec 26, 2022
4ce4838
fix : added strict types to addComponent module
DheerajGBhatt Dec 28, 2022
f8463dd
fix : removed unwanted comments and renamed interface
DheerajGBhatt Dec 28, 2022
fa4fd0f
fix : added strict types to add module
DheerajGBhatt Dec 29, 2022
2c017dd
fix : added strict types to add module
DheerajGBhatt Dec 29, 2022
4a1bb43
fix : added strict types to functions
DheerajGBhatt Dec 29, 2022
50aa055
fix : added strict types to utilities function
DheerajGBhatt Jan 2, 2023
6131650
fix : added strict types to utilities
DheerajGBhatt Jan 3, 2023
2d2f8d4
fix : replaced map with forEach
DheerajGBhatt Jan 3, 2023
b49b5cb
fix : added proper values for TconfigFile
DheerajGBhatt Jan 3, 2023
2a725b3
fix : added types to logics and modules files
DheerajGBhatt Jan 3, 2023
d0b6b53
fix : removed types from modules files
DheerajGBhatt Jan 3, 2023
b4c82b9
fix : added types to components file
DheerajGBhatt Jan 4, 2023
1c8e0ed
fix : added types to module file
DheerajGBhatt Jan 5, 2023
4499f5b
fix : added types to deployment file
DheerajGBhatt Jan 5, 2023
5a4042e
fix : added types to resources file
DheerajGBhatt Jan 10, 2023
c89c046
Fix: changed the variable
DheerajGBhatt Feb 11, 2023
dea06ad
Fix: changes based on review
DheerajGBhatt Feb 11, 2023
9acf122
Fix: sonarcloud bug fixes
DheerajGBhatt Feb 11, 2023
97a6d06
Fix: sonarcloud bug fixes
DheerajGBhatt Feb 11, 2023
e00a57d
Fix: sonarcloud bug fixes
DheerajGBhatt Feb 11, 2023
a17b55f
fix: changed few variables
DheerajGBhatt Feb 12, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .DS_Store
Binary file not shown.
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules/
.**
dist/
*.json
.*
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ module.exports = {
"prettier",
"plugin:eslint-plugin/recommended",
"plugin:@typescript-eslint/recommended",
//'plugin:@typescript-eslint/recommended-requiring-type-checking',
],

overrides: [],
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,6 @@ dist
.tern-port


# lock
package-lock.json
.DS_Store
26 changes: 16 additions & 10 deletions bin/index.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
import * as rover_utilities from "../utlities/utilities";
import * as rover_deployment from "../utlities/deployment";
import * as rover_modules from "../resources/modules";
import * as rover_components from "../resources/components";
import * as rover_config from "../utlities/config";
import * as helpers from "../src/helpers/helpers";
import * as deployment from "../src/deployment/deployment";
import * as modules from "../src/resources/modules/modules";
import * as components from "../src/resources/components/components";
import * as generateSAM from "../src/generateSAM/generatesam";
import * as addComponents from "../src/addComponents/addcomponents";
import * as addModules from "../src/addModules/addModules";
import * as generateSAMTypes from "../src/generateSAM/generatesam.types";
export = {
rover_deployment: rover_deployment,
rover_utilities: rover_utilities,
rover_modules: rover_modules,
rover_components: rover_components,
rover_config: rover_config,
deployment: deployment,
helpers: helpers,
modules: modules,
components: components,
generateSAM: generateSAM,
generateSAMTypes: generateSAMTypes,
addComponents: addComponents,
addModules: addModules,
};
Empty file removed bin/init.ts
Empty file.
Loading