forked from microsoft/fast
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(fast-element): configure production build and add test setup (m…
…icrosoft#3053) * chore(fast-element): configure production build and add test setup * chore(fast-element): add missing dependency * chore(fast-element): do not remove comments from build output * chore(fast-element): add "test" task to alias verbose node tests for CI * fix(fast-element): correct a package dependency * fix(fast-element): better dts ouput types and fixed break in components * chore(fast-element): add gen for dts bundle, api report, and docs json * add @types related to testing to the no-hoist list to ensure there are no conflicts with the *.d.ts lib check during compilation * chore(fast-element): update .npmignore for better npm pack results * chore(fast-element): configure production build and add test setup * chore(fast-element): add missing dependency * chore(fast-element): do not remove comments from build output * chore(fast-element): add "test" task to alias verbose node tests for CI * fix(fast-element): correct a package dependency * fix(fast-element): better dts ouput types and fixed break in components * chore(fast-element): add gen for dts bundle, api report, and docs json * add @types related to testing to the no-hoist list to ensure there are no conflicts with the *.d.ts lib check during compilation * chore(fast-element): lets see if this fixes CI Co-authored-by: Chris Holt <chhol@microsoft.com>
- Loading branch information
1 parent
62e4ea6
commit 200f6a0
Showing
44 changed files
with
3,076 additions
and
246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components/src/dialog/dialog.template.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components/src/slider/slider.template.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.rollupcache | ||
coverage | ||
tsdoc-metadata.json | ||
temp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"colors": true, | ||
"recursive": true, | ||
"timeout": 5000, | ||
"require": [ | ||
"jsdom-global/register" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,23 @@ | ||
# Tests | ||
__test__/ | ||
dist/dts/__test__/ | ||
dist/esm/__test__/ | ||
*.spec.* | ||
*.test.* | ||
coverage/ | ||
|
||
# Source files | ||
src/ | ||
docs/ | ||
|
||
# config files | ||
.eslintignore | ||
.eslintrc.js | ||
.eslintrc.cjs | ||
.prettierignore | ||
tsconfig.json | ||
tsconfig.json | ||
rollup.config.js | ||
karma.conf.cjs | ||
api-extractor.json | ||
.mocharc.json | ||
|
||
# cache | ||
.rollupcache | ||
temp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", | ||
|
||
"mainEntryPointFilePath": "dist/dts/index.d.ts", | ||
|
||
"apiReport": { | ||
"enabled": true, | ||
"reportFolder": "docs", | ||
"reportFileName": "api-report.md" | ||
}, | ||
|
||
"docModel": { | ||
"enabled": true, | ||
"apiJsonFilePath": "dist/fast-element.api.json" | ||
}, | ||
|
||
"dtsRollup": { | ||
"enabled": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.