Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
2.0.0 interim working check in for safety
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-rodgers committed Dec 10, 2016
1 parent 1bf4060 commit fb16d7e
Show file tree
Hide file tree
Showing 194 changed files with 1,025 additions and 16,965 deletions.
3 changes: 2 additions & 1 deletion .bithoundrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"**/typedoctheme/**",
"**/server-root/**",
"**/docs/**",
"**/dist/**"
"**/dist/**",
"**/debug/**"
],
"dependencies": {
"mute": [
Expand Down
29 changes: 11 additions & 18 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,41 +8,34 @@ pids
*.pid
*.seed

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

# Coverage directory used by tools like istanbul
coverage

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

# node-waf configuration
.lock-wscript

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

# Dependency directory
node_modules
typings

# generated folders
lib
server-root/scripts
build
testing
docs
debugging

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history
# allow folks to add things to the debug folder, but don't include them in git
debug/*
!debug/debug.ts
!debug/example.ts

# spsave settings
# project settings
settings.js

bower_components/
bower_components

# need to include this for bower to work, but leave this ignored as PRs
# with updates to dist will be disallowed
dist/

docs/
12 changes: 7 additions & 5 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@ settings.example.js
tsconfig.json
tslint.json
typings.json
webpack.config.js
webpack-serve.config.js
.vscode/
coverage/
server-root/
src/
typings/
tests/
buildtasks/
build/
gulptasks/
docs/
typedoctheme/
typedoctheme/
debug/
debugging/
testing/
27 changes: 14 additions & 13 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,36 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"name": "Debug",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}pnp.js",
"program": "${workspaceRoot}/debug/debug.ts",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": "build:debug",
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": false,
"sourceMaps": false,
"outDir": null
"console": "internalConsole",
"sourceMaps": true,
"outFiles": [
"${workspaceRoot}/debugging/**/*.js"
]
},
{
"name": "Gulp",
"name": "Gulp Test",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/gulp/bin/gulp.js",
"stopOnEntry": false,
"args": ["test"],
"args": [
"test"
],
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"runtimeArgs": [
Expand All @@ -35,19 +40,15 @@
"env": {
"NODE_ENV": "development"
},
"externalConsole": false,
"console": "internalConsole",
"sourceMaps": false,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858,
"sourceMaps": false,
"outDir": null,
"localRoot": "${workspaceRoot}",
"remoteRoot": null
"port": 5858
}
]
}
7 changes: 4 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"lib/": true,
"build/": true,
"lib/": false,
"node_modules/": true,
"coverage": true
"coverage": true,
"testing": true,
"debugging": true
},
"typescript.tsdk": "node_modules/typescript/lib"
}
190 changes: 0 additions & 190 deletions .vscode/tasks.json

This file was deleted.

7 changes: 4 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"Microsoft and other contributors"
],
"dependencies": {
"es6-promise": "~3.1.2",

"whatwg-fetch": "^0.11.0"
},
"keywords": [
Expand Down Expand Up @@ -34,10 +34,11 @@
"src/",
"tests/",
"typings.json",
"buildtasks/",
"gulptasks/",
"typings.json",
"docs/",
"typedoctheme/"
"typedoctheme/",
"debug/"
],
"repository": {
"type": "git",
Expand Down
Loading

0 comments on commit fb16d7e

Please sign in to comment.