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

Upgrade Antlr to 4.9.2 #1254

Merged
merged 6 commits into from
Jun 28, 2021
Merged
Show file tree
Hide file tree
Changes from 4 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
4 changes: 2 additions & 2 deletions build/bf-cli-build-test-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ steps:
continueOnError: true

- task: NodeTool@0
displayName: 'Use Node 12.x'
displayName: 'Use Node 14.x'
inputs:
versionSpec: 12.x
versionSpec: 14.x

- task: Npm@1
displayName: 'npm install --global @microsoft/rush'
Expand Down
33 changes: 0 additions & 33 deletions build/botframework-cli-beta.yml

This file was deleted.

4 changes: 2 additions & 2 deletions build/botframework-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
continueOnError: true

- task: NodeTool@0
displayName: 'Use Node 12.x'
displayName: 'Use Node 14.x'
inputs:
versionSpec: 12.x
versionSpec: 14.x

- task: Npm@1
displayName: 'npm install --global @microsoft/rush'
Expand Down
78 changes: 53 additions & 25 deletions common/config/rush/pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"bugs": "https://github.com/microsoft/botframework-cli",
"engines": {
"node": ">=8.0.0 <14"
"node": ">=14.0.0"
},
"files": [
"/bin",
Expand Down
4 changes: 2 additions & 2 deletions packages/lu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"main": "lib/parser/index.js",
"browser": "lib/parser/composerindex.js",
"engines": {
"node": ">=8.0.0"
"node": ">=14.0.0"
},
"files": [
"/lib",
Expand Down Expand Up @@ -34,7 +34,7 @@
},
"dependencies": {
"@types/node-fetch": "~2.5.5",
"antlr4": "~4.8.0",
"antlr4": "4.9.2",
"axios": "~0.21.1",
"https-proxy-agent": "^5.0.0",
"chalk": "2.4.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/lu/src/parser/lufile/entitySection.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const EntitySectionContext = require('./generated/LUFileParser').LUFileParser.EntitySectionContext;
import EntitySectionContext from './generated/LUFileParser.js'
joshgummersall marked this conversation as resolved.
Show resolved Hide resolved
const DiagnosticSeverity = require('./diagnostic').DiagnosticSeverity;
const BuildDiagnostic = require('./diagnostic').BuildDiagnostic;
const LUSectionTypes = require('./../utils/enums/lusectiontypes');
Expand Down
Loading