Skip to content

Commit 175d01f

Browse files
authored
Merge pull request #7 from adobe-uxp/snjain/plugintestsupport
Snjain/plugintestsupport
2 parents 136ce8b + 558440e commit 175d01f

File tree

239 files changed

+20054
-24914
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

239 files changed

+20054
-24914
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,4 @@ UXP Devtools is a standard tool for rapid Adobe UXP plugin development. UXP Devt
1616
| Illustrator | Not available yet |
1717
| XD | XD 36 or higher in Mac and XD 38 or higher in windows |
1818

19-
`UXP Devtools` are available in form of CLI and Standalone application both. For more about details about [CLI](./packages/uxp-devtools-cli/README.md) and [Application](./packages/uxp-devtools-app/README.md) visit README file.
20-
21-
19+
`UXP Devtools` are available in form of CLI and Standalone application both. Refer the links for more about details about [CLI](./packages/uxp-devtools-cli/README.md) and [Application](https://www.adobe.io/photoshop/uxp/devtool/installation/)

babel.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"presets": ["@babel/preset-env","@babel/preset-react"],
33
"plugins": [
44
["@babel/plugin-proposal-decorators", { "legacy": true }],
5-
["@babel/plugin-proposal-class-properties", { "loose": true}],
5+
["@babel/plugin-proposal-class-properties"],
66
["@babel/plugin-transform-runtime",{ "regenerator": true}],
77
["@babel/plugin-syntax-jsx"]
88
]

jest.config.json

Lines changed: 0 additions & 40 deletions
This file was deleted.

package.json

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "uxp-developer-tools",
3-
"version": "1.2.0",
3+
"version": "1.5.1",
4+
"private": true,
45
"workspaces": {
56
"packages": [
67
"packages/*",
@@ -9,13 +10,14 @@
910
"nohoist": []
1011
},
1112
"scripts": {
12-
"test": "nyc --reporter=json --reporter=html jest --runInBand --coverage",
1313
"lint": "eslint --ext \".js,.js6,.jsx,.ts,.tsx\" ./",
1414
"lint-fix": "eslint --ext \".js,.js6,.jsx,.ts,.tsx\" ./ --fix",
1515
"postinstall": "node scripts/installScript.js",
1616
"cleanup": "node scripts/cleanup.js"
1717
},
18-
"cpu": ["!arm64"],
18+
"cpu": [
19+
"!arm64"
20+
],
1921
"jest": {
2022
"transform": {
2123
"^.+\\.jsx?$": "babel-jest"
@@ -27,6 +29,7 @@
2729
"@babel/preset-env": "^7.11.5",
2830
"babel-eslint": "^10.1.0",
2931
"babel-jest": "^26.3.0",
32+
"@babel/core": "^7.10.4",
3033
"eslint": "^6.8.0",
3134
"eslint-config-airbnb-base": "^14.0.0",
3235
"eslint-plugin-import": "^2.20.1",
@@ -39,9 +42,14 @@
3942
"dependencies": {
4043
"@babel/plugin-syntax-jsx": "^7.10.4",
4144
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
45+
"@babel/plugin-transform-react-jsx": "^7.12.12",
4246
"@babel/plugin-transform-runtime": "^7.11.5",
4347
"@babel/runtime": "^7.11.2",
44-
"@jest-runner/electron": "^3.0.0",
45-
"babel-polyfill": "^6.26.0"
48+
"babel-plugin-istanbul": "^6.0.0",
49+
"babel-polyfill": "^6.26.0",
50+
"babel-register": "^6.26.0"
51+
},
52+
"engines": {
53+
"node": ">=12.19.0"
4654
}
4755
}

packages/uxp-devtools-app/README.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

packages/uxp-devtools-app/babel.config.js

Lines changed: 0 additions & 12 deletions
This file was deleted.

packages/uxp-devtools-app/configs/postcss.config.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/uxp-devtools-app/configs/prettier.config.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

packages/uxp-devtools-app/configs/stylelint.config.js

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)