Skip to content

Commit

Permalink
Merge pull request #6928 from Sage/upgrade-micromatch
Browse files Browse the repository at this point in the history
chore: upgrade a transitive dependency
  • Loading branch information
Parsium committed Sep 3, 2024
2 parents d6cff5a + 5dbc1d6 commit 43700ad
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 43 deletions.
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
.vscode
CONTRIBUTING.md
gulpfile.js
jest.config.json
jest.config.ts
cla
docs
__mocks__
Expand Down
72 changes: 34 additions & 38 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,35 @@
{
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"name": "storybook",
"type": "chrome",
"request": "launch",
"url": "http://localhost:9001",
"webRoot": "${workspaceFolder}"
},
{
"name": "fixtures",
"type": "chrome",
"request": "launch",
"url": "http://localhost:9901",
"webRoot": "${workspaceFolder}"
},
{
"type": "node",
"request": "launch",
"name": "Run Current Spec",
"program": "${workspaceRoot}/node_modules/.bin/jest",
"args": [
"--config=./jest.config.json",
"${file}"
],
"stopOnEntry": false,
"cwd": "${workspaceRoot}",
"sourceMaps": true,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
}
]
}
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "storybook",
"type": "chrome",
"request": "launch",
"url": "http://localhost:9001",
"webRoot": "${workspaceFolder}"
},
{
"name": "fixtures",
"type": "chrome",
"request": "launch",
"url": "http://localhost:9901",
"webRoot": "${workspaceFolder}"
},
{
"type": "node",
"request": "launch",
"name": "Run Current Spec",
"program": "${workspaceRoot}/node_modules/.bin/jest",
"args": ["--config=./jest.config.ts", "${file}"],
"stopOnEntry": false,
"cwd": "${workspaceRoot}",
"sourceMaps": true,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true
}
]
}
9 changes: 5 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 43700ad

Please sign in to comment.