Skip to content

Commit 3eb23b9

Browse files
Merge branch 'main' into gradient
2 parents 8c9ec64 + 56dc46b commit 3eb23b9

File tree

18 files changed

+9919
-149
lines changed

18 files changed

+9919
-149
lines changed

direct-action-js-sample/watch.sh

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

hello-world-js-sample/watch.sh

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

hello-world-panel-js-sample/watch.sh

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

layer-creation-js-sample/watch.sh

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

ui-react-starter/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Dependency directory
2+
node_modules/
3+
4+
#Build directory
5+
dist/

ui-react-starter/README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,26 @@ This plugin is a good place to get started when building a Photoshop plugin usin
44

55
## Install dependencies
66

7-
First, make sure that `yarn` is installed on your system.
7+
First ensure that your terminal is in the root of this project. Then:
8+
9+
For `yarn` users, install all dependencies using:
810

911
```
10-
npm install -g yarn
12+
yarn install
1113
```
1214

13-
Then, after you ensure that your terminal is in the root of this project, use `yarn` to install the various dependencies needed:
15+
For `npm` users, install all dependencies using:
1416

1517
```
16-
yarn install
18+
npm install
1719
```
1820

1921
## Build Process
2022

2123
There are two ways to build the plugin for use in Photoshop:
2224

23-
* `yarn watch` will build a development version of the plugin, and recompile everytime you make a change to the source files. The result is placed in `dist`.
24-
* `yarn build` will build a production version of the plugin and place it in `dist`. It will not update every time you make a change to the source files.
25+
* `yarn watch` or `npm run watch` will build a development version of the plugin, and recompile everytime you make a change to the source files. The result is placed in `dist`.
26+
* `yarn build` or `npm run build` will build a production version of the plugin and place it in `dist`. It will not update every time you make a change to the source files.
2527

2628
> You **must** run either `watch` or `build` prior to trying to use within Photoshop!
2729

0 commit comments

Comments
 (0)