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

[dev-tool] Shared rollup config factory #10923

Merged
merged 20 commits into from
Sep 28, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
81d1203
WIP
witemple-msft Aug 10, 2020
685f8d1
Merge remote-tracking branch 'upstream/master' into rollup-abstraction
witemple-msft Aug 28, 2020
015266f
[dev-tool] Abstract rollup config factory
witemple-msft Aug 28, 2020
25af0f1
fix typo
witemple-msft Aug 29, 2020
33889bf
Fixed typeck error
witemple-msft Aug 31, 2020
9dffc29
dependency cleanup
witemple-msft Aug 31, 2020
ac2edcb
Merge remote-tracking branch 'upstream/master' into rollup-abstraction
witemple-msft Aug 31, 2020
ff11f10
Removed errant test config from template
witemple-msft Sep 1, 2020
3b89784
Fixed template karma configuration
witemple-msft Sep 1, 2020
d19da79
Removed ghost files, small tweak to base config
witemple-msft Sep 12, 2020
6b5b4bb
Merge remote-tracking branch 'upstream/master' into rollup-abstraction
witemple-msft Sep 14, 2020
641441b
Removed explicit config env from template package.json
witemple-msft Sep 14, 2020
8b79559
Removed IS_PRODUCTION gates
witemple-msft Sep 15, 2020
c6b182d
Removed dependency on terser
witemple-msft Sep 15, 2020
0c96ff2
Removed dependency on fs-extra
witemple-msft Sep 15, 2020
958e67a
Added flag to disable browser test bundle
witemple-msft Sep 15, 2020
65839dc
Merge remote-tracking branch 'upstream/master' into rollup-abstraction
witemple-msft Sep 16, 2020
c737534
Merge remote-tracking branch 'upstream/master' into rollup-abstraction
witemple-msft Sep 18, 2020
9820cef
Removed karma-typescript
witemple-msft Sep 24, 2020
3e9bf49
Merge remote-tracking branch 'upstream/master' into rollup-abstraction
witemple-msft Sep 24, 2020
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: 0 additions & 2 deletions sdk/formrecognizer/ai-form-recognizer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@
"@azure/test-utils-recorder": "^1.0.0",
"@microsoft/api-extractor": "7.7.11",
"@types/chai": "^4.1.6",
"@types/fs-extra": "^8.0.0",
"@types/mocha": "^7.0.2",
"@types/node": "^8.0.0",
"@types/sinon": "^9.0.4",
Expand All @@ -108,7 +107,6 @@
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-only-tests": "^2.3.0",
"eslint-plugin-promise": "^4.1.1",
"fs-extra": "^8.1.0",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice!

"karma": "^5.1.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^2.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the MIT license.

import { assert } from "chai";
import fs from "fs-extra";
import fs from "fs";
import path from "path";

import { FormRecognizerClient, AzureKeyCredential } from "../../src";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the MIT license.

import { assert } from "chai";
import fs from "fs-extra";
import fs from "fs";
import path from "path";

import * as dotenv from "dotenv";
Expand Down