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

Commit

Permalink
Switch to chrimc62 packages. (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrimc62 authored Mar 7, 2020
1 parent 2c061ae commit f5dea03
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 10 deletions.
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Public bf cli",
"program": "C:/Users/chrimc/AppData/Roaming/npm/node_modules/@microsoft/botframework-cli/bin/run",
"args": [
"dialog:generate",
"c:/tmp/sandwich/sandwich.schema",
"-o",
"${env:TEMP}/cli.out"
],
"outFiles": [
"C:/Users/chrimc/AppData/Roaming/npm/node_modules/@microsoft/botframework-cli/node_modules/@microsoft/bf-dialog/lib"
],
"skipFiles": [
"<node_internals>/**"
]
},
{
"type": "node",
"request": "launch",
Expand Down
50 changes: 45 additions & 5 deletions common/config/rush/pnpm-lock.yaml

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

4 changes: 2 additions & 2 deletions packages/dialog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"@types/semver": "^6.0.1",
"@types/xml2js": "^0.4.4",
"ajv": "^6.9.1",
"botbuilder-lg": "4.8.0-preview-109324",
"@chrimc62/botbuilder-lg": "^4.1.6",
"chalk": "^2.4.2",
"clone": "^2.1.2",
"fs-extra": "^8.1.0",
Expand All @@ -58,7 +58,7 @@
"semver": "^5.7.0",
"tslib": "^1.10.0",
"xml2js": "^0.4.19",
"adaptive-expressions": "~4.8.0-preview-109324"
"@chrimc62/adaptive-expressions": "^4.1.6"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/dialog/src/library/dialogGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
*/
export * from './dialogGenerator'
import * as s from './schema'
import * as expressions from 'adaptive-expressions'
import * as expressions from '@chrimc62/adaptive-expressions'
import * as fs from 'fs-extra'
import * as lg from 'botbuilder-lg'
import * as lg from '@chrimc62/botbuilder-lg'
import * as ppath from 'path'
import * as ph from './generatePhrases'
import { processSchemas } from './processSchemas'
Expand Down
2 changes: 1 addition & 1 deletion packages/dialog/src/library/generatePhrases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import * as expr from 'adaptive-expressions';
import * as expr from '@chrimc62/adaptive-expressions';

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

0 comments on commit f5dea03

Please sign in to comment.