Skip to content

Commit

Permalink
fix: Dependencies and PAT logging (#204)
Browse files Browse the repository at this point in the history
* Add runtime dependencies as dependencies

* remove logging of PAT

* Change files

---------

Co-authored-by: nicholasrice <nicholasrice@users.noreply.github.com>
  • Loading branch information
nicholasrice and nicholasrice authored Jun 10, 2024
1 parent e737817 commit 0b9ef10
Showing 4 changed files with 18 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "remove logging of PAT",
"packageName": "@adaptive-web/adaptive-ui-designer-figma",
"email": "nicholasrice@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Add runtime dependencies as dependencies",
"packageName": "@adaptive-web/adaptive-ui",
"email": "nicholasrice@users.noreply.github.com",
"dependentChangeType": "patch"
}
1 change: 0 additions & 1 deletion packages/adaptive-ui-designer-figma/src/cli/main.ts
Original file line number Diff line number Diff line change
@@ -42,7 +42,6 @@ async function main({ library }: ProgramOptions) {
};

const response = await inquirer.prompt([patRequest]);
console.log(response.pat, response.pat.length)
const client = Client.create({
pat: response.pat
});
8 changes: 4 additions & 4 deletions packages/adaptive-ui/package.json
Original file line number Diff line number Diff line change
@@ -37,24 +37,24 @@
"postbuild": "npm run doc"
},
"dependencies": {
"@happy-dom/global-registrator": "^14.7.1",
"@microsoft/fast-element": "2.0.0-beta.26",
"@microsoft/fast-foundation": "3.0.0-alpha.31",
"commander": "^12.0.0",
"culori": "^3.2.0",
"matcher": "^5.0.0"
"glob": "^10.3.10",
"matcher": "^5.0.0",
"prettier": "^3.2.5"
},
"devDependencies": {
"@happy-dom/global-registrator": "^14.7.1",
"@microsoft/api-extractor": "^7.34.4",
"@types/chai": "^4.3.4",
"@types/culori": "^2.0.0",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"glob": "^10.3.10",
"jsdom": "^16.2.2",
"jsdom-global": "3.0.2",
"mocha": "^10.2.0",
"prettier": "^3.2.5",
"rimraf": "^3.0.2",
"typescript": "^4.7.0"
},

0 comments on commit 0b9ef10

Please sign in to comment.