Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit f5dea03

Browse files
author
Chris McConnell
authored
Switch to chrimc62 packages. (#642)
1 parent 2c061ae commit f5dea03

File tree

5 files changed

+68
-10
lines changed

5 files changed

+68
-10
lines changed

.vscode/launch.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Public bf cli",
11+
"program": "C:/Users/chrimc/AppData/Roaming/npm/node_modules/@microsoft/botframework-cli/bin/run",
12+
"args": [
13+
"dialog:generate",
14+
"c:/tmp/sandwich/sandwich.schema",
15+
"-o",
16+
"${env:TEMP}/cli.out"
17+
],
18+
"outFiles": [
19+
"C:/Users/chrimc/AppData/Roaming/npm/node_modules/@microsoft/botframework-cli/node_modules/@microsoft/bf-dialog/lib"
20+
],
21+
"skipFiles": [
22+
"<node_internals>/**"
23+
]
24+
},
725
{
826
"type": "node",
927
"request": "launch",

common/config/rush/pnpm-lock.yaml

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

packages/dialog/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"@types/semver": "^6.0.1",
4747
"@types/xml2js": "^0.4.4",
4848
"ajv": "^6.9.1",
49-
"botbuilder-lg": "4.8.0-preview-109324",
49+
"@chrimc62/botbuilder-lg": "^4.1.6",
5050
"chalk": "^2.4.2",
5151
"clone": "^2.1.2",
5252
"fs-extra": "^8.1.0",
@@ -58,7 +58,7 @@
5858
"semver": "^5.7.0",
5959
"tslib": "^1.10.0",
6060
"xml2js": "^0.4.19",
61-
"adaptive-expressions": "~4.8.0-preview-109324"
61+
"@chrimc62/adaptive-expressions": "^4.1.6"
6262
},
6363
"devDependencies": {
6464
"@oclif/dev-cli": "^1.22.0",

packages/dialog/src/library/dialogGenerator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
*/
66
export * from './dialogGenerator'
77
import * as s from './schema'
8-
import * as expressions from 'adaptive-expressions'
8+
import * as expressions from '@chrimc62/adaptive-expressions'
99
import * as fs from 'fs-extra'
10-
import * as lg from 'botbuilder-lg'
10+
import * as lg from '@chrimc62/botbuilder-lg'
1111
import * as ppath from 'path'
1212
import * as ph from './generatePhrases'
1313
import { processSchemas } from './processSchemas'

packages/dialog/src/library/generatePhrases.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Copyright (c) Microsoft Corporation. All rights reserved.
44
* Licensed under the MIT License.
55
*/
6-
import * as expr from 'adaptive-expressions';
6+
import * as expr from '@chrimc62/adaptive-expressions';
77

88
function generateWords(name: string, locale?: string): string[] {
99
let words: string[] = []

0 commit comments

Comments
 (0)