Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions .changeset/clean-bulldogs-deny.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@smartthings/cli": patch
"@smartthings/plugin-cli-edge": patch
---

incorporate edge plugin into monorepo
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"tag": "beta",
"initialVersions": {
"@smartthings/cli": "1.0.0-beta.0",
"@smartthings/plugin-cli-edge": "2.0.0-beta.0",
"@smartthings/cli-lib": "1.0.0-beta.0",
"@smartthings/cli-testlib": "1.0.0-beta.0"
},
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ smartthings-*.zip

# the Typescript outDir that oclif prefers
packages/cli/lib
packages/edge/lib

# functional tests
.pytest_cache
Expand Down
2 changes: 2 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module.exports = {
],
modulePathIgnorePatterns: [
'<rootDir>/dist',
'<rootDir>/lib',
],
clearMocks: true,
reporters: [
Expand All @@ -22,6 +23,7 @@ module.exports = {
globals: {
// TODO: remove when https://github.com/kulshekhar/ts-jest/issues/1967 is resolved
// related flag in tsconfig as well
// eslint-disable-next-line @typescript-eslint/naming-convention
'ts-jest': {
isolatedModules: true,
},
Expand Down
151 changes: 113 additions & 38 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@
"package": "npm run package -w packages/cli",
"version": "changeset version && npm i --package-lock-only && npm run build && npm run version -w packages/cli",
"release": "npm run build && changeset publish",
"readme": "npm run readme -w packages/cli"
"readme": "npm run readme -w packages/edge && npm run readme -w packages/cli"
},
"workspaces": [
"packages/lib",
"packages/testlib",
"packages/edge",
"packages/cli"
],
"devDependencies": {
Expand Down
Loading