Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 8354203

Browse files
committed
add pack step
1 parent ea971ff commit 8354203

File tree

9 files changed

+19
-9
lines changed

9 files changed

+19
-9
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"test": "lerna run build ; lerna run test",
88
"build-docs": "lerna run build-docs",
99
"eslint": "./node_modules/.bin/eslint ./packages/*/src/*.ts ./packages/*/src/**/*.ts",
10-
"eslint-fix": "./node_modules/.bin/eslint ./packages/*/src/*.ts ./packages/*/src/**/*.ts --fix"
10+
"eslint-fix": "./node_modules/.bin/eslint ./packages/*/src/*.ts ./packages/*/src/**/*.ts --fix",
11+
"lerna:pack": "lerna run pack"
1112
},
1213
"devDependencies": {
1314
"@typescript-eslint/eslint-plugin": "^5.5.0",

packages/botbuilder-adapter-facebook/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"scripts": {
1212
"build": "tsc",
1313
"test": "tsc ; nyc mocha tests/*.tests.js",
14-
"eslint": "./node_modules/.bin/eslint --fix src/*"
14+
"eslint": "./node_modules/.bin/eslint --fix src/*",
15+
"pack": "npm pack"
1516
},
1617
"author": "Microsoft Corp.",
1718
"license": "MIT",

packages/botbuilder-adapter-hangouts/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"scripts": {
1212
"build": "tsc",
1313
"test": "tsc ; nyc mocha tests/*.tests.js",
14-
"eslint": "./node_modules/.bin/eslint --fix src/*"
14+
"eslint": "./node_modules/.bin/eslint --fix src/*",
15+
"pack": "npm pack"
1516
},
1617
"author": "Microsoft Corp.",
1718
"license": "MIT",

packages/botbuilder-adapter-slack/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"scripts": {
1212
"build": "tsc",
1313
"test": "tsc ; nyc mocha tests/*.tests.js",
14-
"eslint": "./node_modules/.bin/eslint --fix src/*"
14+
"eslint": "./node_modules/.bin/eslint --fix src/*",
15+
"pack": "npm pack"
1516
},
1617
"author": "Microsoft Corp.",
1718
"license": "MIT",

packages/botbuilder-adapter-twilio-sms/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"scripts": {
1212
"build": "tsc",
1313
"test": "tsc ; nyc mocha tests/*.tests.js",
14-
"eslint": "./node_modules/.bin/eslint --fix src/*"
14+
"eslint": "./node_modules/.bin/eslint --fix src/*",
15+
"pack": "npm pack"
1516
},
1617
"author": "Microsoft Corp.",
1718
"license": "MIT",

packages/botbuilder-adapter-web/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"scripts": {
1313
"build": "tsc",
1414
"test": "tsc ; nyc mocha tests/*.tests.js",
15-
"eslint": "./node_modules/.bin/eslint --fix src/*"
15+
"eslint": "./node_modules/.bin/eslint --fix src/*",
16+
"pack": "npm pack"
1617
},
1718
"author": "Microsoft Corp.",
1819
"license": "MIT",

packages/botbuilder-adapter-webex/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"scripts": {
1212
"build": "tsc",
1313
"test": "tsc ; nyc mocha tests/*.tests.js",
14-
"eslint": "./node_modules/.bin/eslint --fix src/*"
14+
"eslint": "./node_modules/.bin/eslint --fix src/*",
15+
"pack": "npm pack"
1516
},
1617
"author": "Microsoft Corp.",
1718
"license": "MIT",

packages/botkit/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"scripts": {
1212
"build": "tsc",
1313
"eslint": "./node_modules/.bin/eslint --fix src/*",
14-
"test": "tsc ; nyc mocha tests/*.tests.js"
14+
"test": "tsc ; nyc mocha tests/*.tests.js",
15+
"pack": "npm pack"
1516
},
1617
"author": "[email protected]",
1718
"license": "MIT",

packages/generator-botkit/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"name": "generator-botkit",
33
"version": "4.10.0",
44
"description": "Automatically generate a Botkit application template for any supported platform",
5-
"scripts": {},
5+
"scripts": {
6+
"pack": "npm pack"
7+
},
68
"files": [
79
"generators"
810
],

0 commit comments

Comments
 (0)