Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make uxp command work again, actually use deps correctly, remove postinstall hooks #10

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix more dependencies
hansottowirtz committed Feb 9, 2023
commit cbdf59d93c5d4be886d9271610ba61dfe6e5214a
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## This repo contains edits to make the `uxp` CLI command usable.

```bash
npm i -g uxp-devtools-cli-fixed
```

# Overview

UXP Devtools is a standard tool for rapid Adobe UXP plugin development. UXP Devtools provides the ability to do all of the following:
17 changes: 9 additions & 8 deletions packages/uxp-devtools-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uxp-devtools-cli-fixed",
"version": "1.5.1",
"name": "@adobe-fixed-uxp/uxp-devtools-cli",
"version": "1.5.2",
"description": "Command line interface for rapid UXP plugin development",
"main": "src/uxp.js",
"scripts": {
@@ -24,21 +24,22 @@
"author": "Adobe Inc",
"license": "Apache-2.0",
"dependencies": {
"@adobe/uxp-devtools-core": "^1.5.0",
"@adobe/uxp-inspect-frontend": "^1.5.1",
"@adobe/uxp-template-ps-starter": "^1.0.0",
"@adobe-fixed-uxp/uxp-devtools-core": "^1.5.0",
"@adobe-fixed-uxp/uxp-wdio-automation-template": "^1.0.0",
"@adobe/uxp-template-default-starter": "^1.0.0",
"@adobe/uxp-template-default-starter-xd": "^1.0.0",
"@adobe/uxp-template-default-starter-ps": "^1.0.0",
"@adobe/uxp-template-default-starter-xd": "^1.0.0",
"@adobe/uxp-template-ps-react-starter": "^1.0.0",
"@adobe/uxp-template-ps-react-typescript": "^1.0.0",
"@adobe/uxp-template-ps-starter": "^1.0.0",
"@adobe/uxp-template-xd-starter": "^1.0.0",
"@adobe/uxp-wdio-automation-template": "^1.0.0",
"@adobe/uxp_web_driver": "2.2.1",
"chalk": "^3.0.0",
"cli-table3": "^0.6.0",
"prompts": "^2.3.2",
"semver": "^7.3.2",
"yargs": "^15.3.1"
},
"devDependencies": {
"@adobe-fixed-uxp/uxp-inspect-frontend": "^1.5.1"
}
}
3 changes: 3 additions & 0 deletions packages/uxp-devtools-core/package.json
Original file line number Diff line number Diff line change
@@ -33,5 +33,8 @@
"archiver": "5.3.0",
"ignore-walk": "^3.0.3",
"shell-exec": "^1.0.2"
},
"devDependencies": {
"@adobe/uxp_web_driver": "^2.2.1"
}
}