Skip to content

Commit

Permalink
Update RLC-quickstart.md (#18733)
Browse files Browse the repository at this point in the history
  • Loading branch information
qiaozha authored Nov 18, 2021
1 parent f810a3f commit c2ca12d
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions documentation/RLC-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,6 @@ In order to release it, we need to add some tests for it to make sure we are del
"integration-test:browser": "karma start --single-run",
"integration-test:node": "nyc mocha -r esm --require source-map-support/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 5000000 --full-trace \"dist-esm/test/{,!(browser)/**/}*.spec.js\"",
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
"browser": {
"./dist-esm/test/public/utils/env.js": "./dist-esm/test/public/utils/env.browser.js"
},
~~~
Then add the following test dependencies into the `devDependencies` section.
Expand Down Expand Up @@ -188,7 +185,15 @@ In order to release it, we need to add some tests for it to make sure we are del
"typedoc": "0.15.2",
"typescript": "~4.2.0"
~~~
Then add a browser test entry section.
~~~
"browser": {
"./dist-esm/test/public/utils/env.js": "./dist-esm/test/public/utils/env.browser.js"
},
~~~
---
**NOTE**
We need to make sure those dependencies versions are align with other package.json files. You can double check it in [here](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/agrifood/agrifood-farming-rest/package.json)
Expand Down

0 comments on commit c2ca12d

Please sign in to comment.