Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: enforce node >=12 #1665

Merged
merged 3 commits into from
Nov 26, 2019
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 Composer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The web app that can edit bots in OBI format, and can use Bot Launcher to run bo
### Instructions

Prerequisite:
* node > 10.0
* node > 12
* yarn // npm install -g yarn

To build for hosting as site extension
Expand Down
3 changes: 3 additions & 0 deletions Composer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"resolutions": {
"@types/react": "16.9.0"
},
"engines": {
"node": ">=12"
},
"workspaces": [
"packages/client",
"packages/server",
Expand Down
3 changes: 3 additions & 0 deletions Composer/packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"name": "@bfc/client",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=12"
},
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js",
Expand Down
3 changes: 3 additions & 0 deletions Composer/packages/extensions/obiformeditor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"name": "@bfc/obiformeditor",
"version": "1.0.0",
"description": "obieditortest React component",
"engines": {
"node": ">=12"
},
"main": "lib/index.js",
"module": "es/index.js",
"files": [
Expand Down
3 changes: 3 additions & 0 deletions Composer/packages/extensions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"build:visual-designer": "cd visual-designer && yarn build",
"build:obiformeditor": "cd obiformeditor && yarn build",
Expand Down
3 changes: 3 additions & 0 deletions Composer/packages/extensions/visual-designer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "1.0.0",
"description": "visual-designer React component",
"main": "lib/index.js",
"engines": {
"node": ">=12"
},
"files": [
"css",
"es",
Expand Down
3 changes: 3 additions & 0 deletions Composer/packages/lib/code-editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "0.0.0",
"description": "Code editor component that is shared in composer packages",
"main": "lib/index.js",
"engines": {
"node": ">=12"
},
"repository": "https://github.com/microsoft/BotFramework-Composer",
"license": "MIT",
"private": true,
Expand Down
3 changes: 3 additions & 0 deletions Composer/packages/lib/eslint-plugin-bfcomposer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"name": "@bfc/eslint-plugin-bfcomposer",
"version": "1.0.0",
"main": "src/index.js",
"engines": {
"node": ">=12"
},
"devDependencies": {
"lodash": "^4.17.15"
}
Expand Down
3 changes: 3 additions & 0 deletions Composer/packages/lib/indexers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "0.0.0",
"description": "<description>",
"main": "lib/index.js",
"engines": {
"node": ">=12"
},
"repository": "https://github.com/microsoft/BotFramework-Composer",
"license": "MIT",
"scripts": {
Expand Down
3 changes: 3 additions & 0 deletions Composer/packages/lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"build:code-editor": "cd code-editor && yarn build",
"build:shared": "cd shared && yarn build",
Expand Down
3 changes: 3 additions & 0 deletions Composer/packages/lib/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
"main": "lib/index.js",
"repository": "https://github.com/microsoft/BotFramework-Composer",
"license": "MIT",
"engines": {
"node": ">=12"
},
"scripts": {
"build": "yarn clean && yarn build:css && yarn build:ts",
"build:ts": "tsc --build tsconfig.build.json",
Expand Down
3 changes: 3 additions & 0 deletions Composer/packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"analyze": "source-map-explorer 'build/public/static/js/*.js'",
"build": "tsc -p tsconfig.build.json",
Expand Down