Skip to content

Commit 6044b59

Browse files
authored
Move internal packages to @msinternal/* (#5531)
* Move internal packages to @msinternal/* * Move internal packages to @msinternal/* * Add --ignore-scripts * Add --ignore-scripts
1 parent 874d0c7 commit 6044b59

File tree

132 files changed

+222
-243
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+222
-243
lines changed

.github/workflows/daily-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

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

36-
- run: npm clean-install --no-production
36+
- run: npm clean-install --ignore-scripts --no-production
3737

3838
- name: Propagate versions
3939
run: npm version --no-git-tag-version --no-workspaces-update --workspaces `cat package.json | jq -r .version`

.github/workflows/playground.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Checking out for ${{ github.ref }}
1717
uses: actions/checkout@v2
1818

19-
- run: npm clean-install
19+
- run: npm clean-install --ignore-scripts
2020

2121
- run: |
2222
npm run build

.github/workflows/preview-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
if: ${{ startsWith(github.ref, 'refs/heads/') }}
2626
run: npx version-from-git --no-git-tag-version
2727

28-
- run: npm clean-install
28+
- run: npm clean-install --ignore-scripts
2929

3030
- name: Propagate versions
3131
run: npm version --no-git-tag-version --workspaces `cat package.json | jq -r .version`

.github/workflows/publish-github-pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
node-version: ${{ env.node-version }}
3131
cache: npm
3232

33-
- run: npm clean-install
33+
- run: npm clean-install --ignore-scripts
3434
working-directory: ./samples
3535

3636
- name: Run npm run build

.github/workflows/pull-request-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
node-version: ${{ env.node-version }}
3939
cache: npm
4040

41-
- run: npm clean-install --strict-peer-deps
41+
- run: npm clean-install --ignore-scripts --strict-peer-deps
4242

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

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ignore-scripts=true

package-lock.json

Lines changed: 41 additions & 63 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "botframework-webchat-root",
2+
"name": "@msinternal/botframework-webchat-root",
33
"version": "4.18.1-0",
44
"private": true,
55
"author": "Microsoft Corporation",

0 commit comments

Comments
 (0)