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

Adaptive UI Explorer - initial port #6424

Merged
merged 4 commits into from
Oct 18, 2022
Merged
Show file tree
Hide file tree
Changes from 3 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
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "Initial port of Color Explorer into the new Adaptive UI Explorer component",
"packageName": "@microsoft/adaptive-ui-explorer",
"email": "47367562+bheston@users.noreply.github.com",
"dependentChangeType": "prerelease"
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"private": true,
"workspaces": {
"packages": [
"packages/tooling/adaptive-ui-explorer",
"packages/utilities/*",
"packages/web-components/*",
"sites/fast-color-explorer",
Expand Down
10 changes: 10 additions & 0 deletions packages/tooling/adaptive-ui-explorer/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# don't ever lint node_modules
node_modules
# don't lint build output (make sure it's set to your correct build folder name)
dist
# don't lint coverage output
coverage
# don't lint www
www
# don't lint test files
__test__
6 changes: 6 additions & 0 deletions packages/tooling/adaptive-ui-explorer/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["@microsoft/eslint-config-fast-dna", "prettier"],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off"
}
}
3 changes: 3 additions & 0 deletions packages/tooling/adaptive-ui-explorer/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
tsdoc-metadata.json
temp
test
7 changes: 7 additions & 0 deletions packages/tooling/adaptive-ui-explorer/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Tests
__test__/
*.spec.*
*.test.*

# Source files
src/
1 change: 1 addition & 0 deletions packages/tooling/adaptive-ui-explorer/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
3 changes: 3 additions & 0 deletions packages/tooling/adaptive-ui-explorer/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist/*
test/*
src/__test__/*
Empty file.
50 changes: 50 additions & 0 deletions packages/tooling/adaptive-ui-explorer/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"name": "@microsoft/adaptive-ui-explorer",
"version": "1.0.0-alpha.1",
"description": "A playground for Adaptive UI",
"type": "module",
"private": true,
"main": "dist/esm/index.js",
"types": "dist/adaptive-ui-explorer.d.ts",
"unpkg": "dist/esm/index.js",
bheston marked this conversation as resolved.
Show resolved Hide resolved
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/fast.git",
"directory": "packages/utilities/adaptive-ui"
},
"author": {
"name": "Microsoft",
"url": "https://discord.gg/FcSNfg4"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/fast/issues/new/choose"
},
"homepage": "https://fast.design",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"build:app": "webpack --mode=production",
"clean": "node ../../../build/clean.js dist",
"prepare": "yarn clean && yarn build",
"prettier": "prettier --config ../../../.prettierrc --write \"**/*.ts\"",
"prettier:diff": "prettier --config ../../../.prettierrc \"**/*.ts\" --list-different",
"start": "webpack-dev-server"
},
"dependencies": {
"@microsoft/adaptive-ui": "^1.0.0-alpha.2",
"@microsoft/fast-colors": "^5.3.1",
"@microsoft/fast-element": "^2.0.0-beta.6",
"@microsoft/fast-foundation": "^3.0.0-alpha.9"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"inject-body-webpack-plugin": "^1.3.0",
"resolve-typescript-plugin": "^1.2.0",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.2"
}
}
Loading