Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/daily-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- run: npx version-from-git --no-git-tag-version

- run: npm clean-install --no-production
- run: npm clean-install --ignore-scripts --no-production

- name: Propagate versions
run: npm version --no-git-tag-version --no-workspaces-update --workspaces `cat package.json | jq -r .version`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playground.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Checking out for ${{ github.ref }}
uses: actions/checkout@v2

- run: npm clean-install
- run: npm clean-install --ignore-scripts

- run: |
npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/heads/') }}
run: npx version-from-git --no-git-tag-version

- run: npm clean-install
- run: npm clean-install --ignore-scripts

- name: Propagate versions
run: npm version --no-git-tag-version --workspaces `cat package.json | jq -r .version`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-github-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
node-version: ${{ env.node-version }}
cache: npm

- run: npm clean-install
- run: npm clean-install --ignore-scripts
working-directory: ./samples

- name: Run npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
node-version: ${{ env.node-version }}
cache: npm

- run: npm clean-install --strict-peer-deps
- run: npm clean-install --ignore-scripts --strict-peer-deps

- run: npm run build --if-present # Add instrumentation code

Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ignore-scripts=true
104 changes: 41 additions & 63 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "botframework-webchat-root",
"name": "@msinternal/botframework-webchat-root",
"version": "4.18.1-0",
"private": true,
"author": "Microsoft Corporation",
Expand Down
Loading
Loading