Skip to content

Commit

Permalink
TASK: Change dashes to colons in script names
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebobo committed Apr 1, 2023
1 parent 38cb664 commit 7618240
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Expand Up @@ -25,10 +25,10 @@ jobs:
run: yarn lint

- name: Build the Neos UI plugin
run: yarn build-ui
run: yarn build:ui

- name: Build the backend module plugin
run: yarn build-module
run: yarn build:module

test:
runs-on: ubuntu-latest
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -141,8 +141,8 @@ yarn watch
Or watch them individually

```console
yarn watch-ui
yarn watch-module
yarn watch:ui
yarn watch:module
```

To build both plugins for production, run the following command:
Expand All @@ -154,8 +154,8 @@ yarn build
Or run the build for each plugin individually

```console
yarn build-ui
yarn build-module
yarn build:ui
yarn build:module
```

## License
Expand Down
12 changes: 6 additions & 6 deletions package.json
Expand Up @@ -31,16 +31,16 @@
},
"scripts": {
"build": "yarn workspaces foreach -pt run build",
"watch": "yarn watch-ui && yarn watch-module",
"build-ui": "yarn workspace @neos-commandbar/ui-plugin build",
"watch-ui": "yarn workspace @neos-commandbar/ui-plugin watch",
"build-module": "yarn workspace @neos-commandbar/module-plugin build",
"watch-module": "yarn workspace @neos-commandbar/module-plugin watch",
"watch": "yarn watch:ui && yarn watch:module",
"build:ui": "yarn workspace @neos-commandbar/ui-plugin build",
"watch:ui": "yarn workspace @neos-commandbar/ui-plugin watch",
"build:module": "yarn workspace @neos-commandbar/module-plugin build",
"watch:module": "yarn workspace @neos-commandbar/module-plugin watch",
"dev": "yarn workspace @neos-commandbar/dev-server start",
"test": "testcafe",
"test:github-actions": "xvfb-run --server-args=\"-screen 0 1280x720x24\" yarn testcafe chrome",
"lint": "tsc --noemit && eslint 'packages/*/src/**/*.{js,jsx,ts,tsx}'",
"analyze-module": "yarn build-module --reporter @parcel/reporter-bundle-analyzer"
"analyze:module": "yarn build:module --reporter @parcel/reporter-bundle-analyzer"
},
"prettier": {
"printWidth": 120,
Expand Down

0 comments on commit 7618240

Please sign in to comment.