Skip to content

Commit

Permalink
Merge pull request #10 from microsoft:aeschli/pathutils
Browse files Browse the repository at this point in the history
Path related utilities for URI
  • Loading branch information
jrieken authored Oct 6, 2020
2 parents 7c094c5 + d86ce0a commit d797049
Show file tree
Hide file tree
Showing 11 changed files with 5,055 additions and 21 deletions.
5 changes: 5 additions & 0 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"ui": "tdd",
"color": true,
"spec": "./lib/umd/test/*.test.js"
}
6 changes: 6 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
src/
lib/esm/test/
lib/umd/test/
.vscode
spec
tsconfig.json
.mocharc.json
.travis.yml
webpack.config.js
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: node_js
sudo: false

node_js:
- "5"
- "10"

script:
- npm install
25 changes: 25 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Unit tests",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"args": [
"--timeout",
"999999",
"--colors"
],
"outFiles": [
"${workspaceRoot}/lib/umd/**"
],
}
]
}
Loading

0 comments on commit d797049

Please sign in to comment.