Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
9 changes: 9 additions & 0 deletions contrib/cluster-local-storage-plugin/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
90 changes: 90 additions & 0 deletions contrib/cluster-local-storage-plugin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
# Created by https://www.gitignore.io/api/node
# Edit at https://www.gitignore.io/?templates=node

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
.nuxt

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# End of https://www.gitignore.io/api/node
43 changes: 43 additions & 0 deletions contrib/cluster-local-storage-plugin/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"name": "cluster-local-storage-plugin",
"version": "0.0.1",
"description": "A web portal plugin to manage cluster local storage.",
"main": "src/index.ts",
"scripts": {
"prebuild": "tslint --project .",
"build": "webpack --mode=production",
"dev": "webpack-dev-server --mode=development",
"start": "webpack-dev-server --mode=production"
},
"author": "Microsoft Corporation",
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/pai.git"
},
"bugs": {
"url": "https://github.com/Microsoft/pai/issues"
},
"homepage": "https://github.com/Microsoft/pai#readme",
"license": "MIT",
"dependencies": {
"@microsoft/openpai-js-sdk": "^0.1.5",
"core-js": "^3.0.1",
"office-ui-fabric-react": "^6.162.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@types/react": "^16.8.7",
"@types/react-dom": "^16.8.2",
"node-sass": "^4.14.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.0.3",
"tslint": "^5.20.1",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}
Loading