Skip to content

Commit

Permalink
chore(dependencies): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nfroidure committed Feb 24, 2024
1 parent 4a88b0e commit 14c71ba
Show file tree
Hide file tree
Showing 33 changed files with 1,360 additions and 1,874 deletions.
5 changes: 2 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
*.md text eol=lf
*.html text eol=lf
*.js text eol=lf
# Enforce Unix newlines
* text=auto eol=lf
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# This file is automatically generated by a `metapak`
# module. Do not change it here, your changes would
# be overridden.

name: Node.js CI

on:
Expand All @@ -20,7 +24,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run pre-commit tests
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,4 @@ builds
*.plan
*.tfstate.d
*.credentials.json
.nx/cache
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["gruntfuggly.todo-tree"]
}
54 changes: 23 additions & 31 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,35 @@
{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": [
"build",
"cover",
"doc",
"jest",
"lint",
"test",
"architecture"
]
}
}
},
"targetDefaults": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"{projectRoot}/dist"
]
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/dist"],
"cache": true
},
"cover": {
"outputs": [
"{projectRoot}/coverage"
]
"outputs": ["{projectRoot}/coverage"],
"cache": true
},
"doc": {
"outputs": [
"{projectRoot}/API.md"
]
"outputs": ["{projectRoot}/API.md"],
"cache": true
},
"architecture": {
"outputs": [
"{projectRoot}/ARCHITECTURE.md"
]
"outputs": ["{projectRoot}/ARCHITECTURE.md"],
"cache": true
},
"jest": {
"cache": true
},
"lint": {
"cache": true
},
"test": {
"cache": true
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": [],
"production": ["default"]
}
}
Loading

0 comments on commit 14c71ba

Please sign in to comment.