Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kenotron committed Dec 1, 2018
0 parents commit 13a226f
Show file tree
Hide file tree
Showing 48 changed files with 12,007 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Don't allow people to merge changes to these generated files, because the result
# may be invalid. You need to run "rush update" again.
shrinkwrap.yaml merge=binary
npm-shrinkwrap.json merge=binary
yarn.lock merge=binary
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

.DS_Store

node_modules
lib
build
dist
temp

documentation/lib/core/metadata.js
documentation/lib/core/MetadataBlog.js

documentation/website/translated_docs
documentation/website/build/
documentation/website/yarn.lock
documentation/website/i18n/*

# Rush files
common/temp/**
package-deps.json
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"[handlebars]": {
"editor.formatOnSave": false
}
}
12 changes: 12 additions & 0 deletions common/config/rush/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Rush uses this file to configure the package registry, regardless of whether the
# package manager is PNPM, NPM, or Yarn. Prior to invoking the package manager,
# Rush will always copy this file to the folder where installation is performed.
# When NPM is the package manager, Rush works around NPM's processing of
# undefined environment variables by deleting any lines that reference undefined
# environment variables.
#
# DO NOT SPECIFY AUTHENTICATION CREDENTIALS IN THIS FILE. It should only be used
# to configure registry sources.

registry=https://registry.npmjs.org/
always-auth=false
186 changes: 186 additions & 0 deletions common/config/rush/browser-approved-packages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,186 @@
// DO NOT ADD COMMENTS IN THIS FILE. They will be lost when the Rush tool resaves it.
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/approved-packages.schema.json",
"packages": [
{
"name": "@babel/core",
"allowedCategories": [ "docs" ]
},
{
"name": "@babel/plugin-proposal-class-properties",
"allowedCategories": [ "docs" ]
},
{
"name": "@babel/plugin-proposal-object-rest-spread",
"allowedCategories": [ "docs" ]
},
{
"name": "@babel/polyfill",
"allowedCategories": [ "docs" ]
},
{
"name": "@babel/preset-env",
"allowedCategories": [ "docs" ]
},
{
"name": "@babel/preset-react",
"allowedCategories": [ "docs" ]
},
{
"name": "@babel/register",
"allowedCategories": [ "docs" ]
},
{
"name": "@babel/traverse",
"allowedCategories": [ "docs" ]
},
{
"name": "@babel/types",
"allowedCategories": [ "docs" ]
},
{
"name": "@types/bunyan",
"allowedCategories": [ "production" ]
},
{
"name": "@types/bunyan-prettystream",
"allowedCategories": [ "production" ]
},
{
"name": "@types/chalk",
"allowedCategories": [ "production" ]
},
{
"name": "@types/cpx",
"allowedCategories": [ "production" ]
},
{
"name": "@types/glob",
"allowedCategories": [ "production" ]
},
{
"name": "@types/handlebars",
"allowedCategories": [ "production" ]
},
{
"name": "@types/json5",
"allowedCategories": [ "production" ]
},
{
"name": "@types/mkdirp",
"allowedCategories": [ "production" ]
},
{
"name": "@types/node",
"allowedCategories": [ "production" ]
},
{
"name": "@types/rimraf",
"allowedCategories": [ "production" ]
},
{
"name": "@types/undertaker",
"allowedCategories": [ "production" ]
},
{
"name": "@types/undertaker-registry",
"allowedCategories": [ "production" ]
},
{
"name": "@types/yargs",
"allowedCategories": [ "production" ]
},
{
"name": "@uifabric/experiments",
"allowedCategories": [ "docs" ]
},
{
"name": "@uifabric/fabric-website-resources",
"allowedCategories": [ "docs" ]
},
{
"name": "build",
"allowedCategories": [ "production" ]
},
{
"name": "build-rig",
"allowedCategories": [ "production" ]
},
{
"name": "bunyan",
"allowedCategories": [ "production" ]
},
{
"name": "bunyan-prettystream",
"allowedCategories": [ "production" ]
},
{
"name": "chalk",
"allowedCategories": [ "production" ]
},
{
"name": "cpx",
"allowedCategories": [ "production" ]
},
{
"name": "dev",
"allowedCategories": [ "production" ]
},
{
"name": "docusaurus",
"allowedCategories": [ "docs" ]
},
{
"name": "glob",
"allowedCategories": [ "production" ]
},
{
"name": "handlebars",
"allowedCategories": [ "production" ]
},
{
"name": "jest",
"allowedCategories": [ "production" ]
},
{
"name": "json5",
"allowedCategories": [ "production" ]
},
{
"name": "mkdirp",
"allowedCategories": [ "production" ]
},
{
"name": "office-ui-fabric-react",
"allowedCategories": [ "docs" ]
},
{
"name": "react",
"allowedCategories": [ "docs" ]
},
{
"name": "react-dom",
"allowedCategories": [ "docs" ]
},
{
"name": "rimraf",
"allowedCategories": [ "production" ]
},
{
"name": "typescript",
"allowedCategories": [ "production" ]
},
{
"name": "undertaker",
"allowedCategories": [ "production" ]
},
{
"name": "undertaker-registry",
"allowedCategories": [ "production" ]
},
{
"name": "yargs",
"allowedCategories": [ "production" ]
}
]
}
Loading

0 comments on commit 13a226f

Please sign in to comment.