Skip to content

Commit

Permalink
v0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksiilevzhynskyi committed Oct 13, 2023
1 parent 73e4a10 commit 25fd110
Show file tree
Hide file tree
Showing 7 changed files with 74 additions and 28 deletions.
65 changes: 43 additions & 22 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,46 @@
{
"version": "0.1.0",
"command": "npm",
"isShellCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"version": "2.0.0",
"command": "npm",
"tasks": [
{
"taskName": "build",
"args": ["run", "build"],
"isBuildCommand": true
},
{
"taskName": "test",
"args": ["run", "test"],
"isTestCommand": true
},
{
"taskName": "watch",
"args": ["run", "test:watch"],
"isTestCommand": true,
"isWatching": true
}
]
{
"label": "build",
"type": "shell",
"args": [
"run",
"build"
],
"problemMatcher": [],
"group": {
"_id": "build",
"isDefault": false
}
},
{
"label": "test",
"type": "shell",
"args": [
"run",
"test"
],
"problemMatcher": [],
"group": {
"_id": "test",
"isDefault": false
}
},
{
"label": "watch",
"type": "shell",
"args": [
"run",
"test:watch"
],
"isBackground": true,
"problemMatcher": [],
"group": {
"_id": "test",
"isDefault": false
}
}
]
}
25 changes: 25 additions & 0 deletions .vscode/tasks.json.old
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"version": "0.1.0",
"command": "npm",
"isShellCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"tasks": [
{
"taskName": "build",
"args": ["run", "build"],
"isBuildCommand": true
},
{
"taskName": "test",
"args": ["run", "test"],
"isTestCommand": true
},
{
"taskName": "watch",
"args": ["run", "test:watch"],
"isTestCommand": true,
"isWatching": true
}
]
}
2 changes: 1 addition & 1 deletion packages/examples/all/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"author": "Grammarly, Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@grammarly/focal": "0.10.0-alpha.0",
"@grammarly/focal": "0.10.1",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.0",
"css-loader": "^3.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/todomvc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"author": "Grammarly, Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@grammarly/focal": "0.10.0-alpha.0",
"@grammarly/focal": "0.10.1",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.0",
"eslint": "^7.18.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/focal-atom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grammarly/focal-atom",
"version": "0.10.0-alpha.0",
"version": "0.10.1",
"description": "FRP Atom: observables, immutable data and lenses",
"main": "dist/_cjs/src/index.js",
"module": "dist/_esm5/src/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/focal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grammarly/focal",
"version": "0.10.0-alpha.0",
"version": "0.10.1",
"description": "FRP UI with React, observables, immutable data and lenses",
"main": "dist/_cjs/src/index.js",
"module": "dist/_esm5/src/index.js",
Expand Down Expand Up @@ -108,7 +108,7 @@
"typescript": "^4.7.4"
},
"dependencies": {
"@grammarly/focal-atom": "^0.10.0-alpha.0"
"@grammarly/focal-atom": "^0.10.1"
},
"peerDependencies": {
"@types/react": ">= 18.0.0 < 19.0.0-0",
Expand Down
2 changes: 1 addition & 1 deletion packages/test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"author": "Grammarly, Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@grammarly/focal": "0.10.0-alpha.0",
"@grammarly/focal": "0.10.1",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.0",
"eslint": "^7.18.0",
Expand Down

0 comments on commit 25fd110

Please sign in to comment.