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

NO-JIRA Update development scripts & documentation #254

Merged
merged 1 commit into from
Jun 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,25 +34,25 @@ Developer documentation

### How to set the environment

* Install NPM (v8 or higher) / Node.js (v6 or higher)
* npm install -g tfx-cli
* npm run install-dep-full
* Install NPM (v8 or higher) / Node.js (v14 or higher)
* `npm install -g tfx-cli`
* `npm run install-dep-full`

### Package a production build

* npm run build
* `npm run build`

### Package a test build

* npm run test-build -- --publisher <publisher-id>
* `npm run test-build -- --publisher <publisher-id>`
7PH marked this conversation as resolved.
Show resolved Hide resolved

### Run tests

* npm test
* `npm test`

License
-------

Copyright 2017-2020 SonarSource.
Copyright 2017-2023 SonarSource.
7PH marked this conversation as resolved.
Show resolved Hide resolved

Licensed under the [GNU Lesser General Public License, Version 3.0](http://www.gnu.org/licenses/lgpl.txt))
Licensed under the [GNU Lesser General Public License, Version 3.0](http://www.gnu.org/licenses/lgpl.txt))
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ var cycloneDxPipe = (flavour, ...ps) => {
mergeFile.inputFiles = files.map(f => f.path)
return [mergeFile]
}))
.pipe(exec(file => `cyclonedx merge \
.pipe(exec(file => `npm run cyclonedx-run -- merge \
7PH marked this conversation as resolved.
Show resolved Hide resolved
--hierarchical \
--name ${packageJSON.name}-${flavour} \
--version ${packageVersion} \
Expand Down
Loading