-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4f109d0
commit 3d065cc
Showing
17 changed files
with
53 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@harlem/app", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"description": "Simple, unopinionated, lightweight and extensible state management for Vue 3", | ||
"repository": "https://github.com/andrewcourtice/harlem.git", | ||
"author": "Andrew Courtice <[email protected]>", | ||
|
@@ -13,16 +13,16 @@ | |
"build": "vite build" | ||
}, | ||
"dependencies": { | ||
"@harlem/core": "^2.0.0-beta.0", | ||
"@harlem/extension-action": "^2.0.0-beta.0", | ||
"@harlem/extension-history": "^2.0.0-beta.0", | ||
"@harlem/extension-lazy": "^2.0.0-beta.0", | ||
"@harlem/extension-reset": "^2.0.0-beta.0", | ||
"@harlem/extension-snapshot": "^2.0.0-beta.0", | ||
"@harlem/extension-storage": "^2.0.0-beta.0", | ||
"@harlem/extension-trace": "^2.0.0-beta.0", | ||
"@harlem/extension-transaction": "^2.0.0-beta.0", | ||
"@harlem/plugin-devtools": "^2.0.0-beta.0", | ||
"@harlem/core": "^2.0.0-beta.1", | ||
"@harlem/extension-action": "^2.0.0-beta.1", | ||
"@harlem/extension-history": "^2.0.0-beta.1", | ||
"@harlem/extension-lazy": "^2.0.0-beta.1", | ||
"@harlem/extension-reset": "^2.0.0-beta.1", | ||
"@harlem/extension-snapshot": "^2.0.0-beta.1", | ||
"@harlem/extension-storage": "^2.0.0-beta.1", | ||
"@harlem/extension-trace": "^2.0.0-beta.1", | ||
"@harlem/extension-transaction": "^2.0.0-beta.1", | ||
"@harlem/plugin-devtools": "^2.0.0-beta.1", | ||
"date-fns": "^2.23.0", | ||
"date-fns-tz": "^1.1.6", | ||
"flex-layout-attribute": "^1.0.3", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@harlem/core", | ||
"amdName": "harlem", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"license": "MIT", | ||
"author": "Andrew Courtice <[email protected]>", | ||
"description": "Simple, unopinionated, lightweight and extensible state management for Vue 3", | ||
|
@@ -37,7 +37,7 @@ | |
"prepublish": "yarn build" | ||
}, | ||
"dependencies": { | ||
"@harlem/utilities": "^2.0.0-beta.0" | ||
"@harlem/utilities": "^2.0.0-beta.1" | ||
}, | ||
"peerDependencies": { | ||
"vue": "^3.2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"private": true, | ||
"name": "@harlem/docs", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"description": "Simple, unopinionated, lightweight and extensible state management for Vue 3", | ||
"repository": "https://github.com/andrewcourtice/harlem.git", | ||
"author": "Andrew Courtice <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@harlem/extension-action", | ||
"amdName": "harlemAction", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"license": "MIT", | ||
"author": "Andrew Courtice <[email protected]>", | ||
"description": "The official action extension for Harlem", | ||
|
@@ -39,15 +39,15 @@ | |
"prepublish": "yarn build" | ||
}, | ||
"dependencies": { | ||
"@harlem/task": "^2.0.0-beta.0" | ||
"@harlem/task": "^2.0.0-beta.1" | ||
}, | ||
"peerDependencies": { | ||
"@harlem/core": "^2.0.0-alpha.0", | ||
"vue": "^3.2.0" | ||
}, | ||
"devDependencies": { | ||
"@harlem/core": "^2.0.0-beta.0", | ||
"@harlem/testing": "^2.0.0-beta.0", | ||
"@harlem/core": "^2.0.0-beta.1", | ||
"@harlem/testing": "^2.0.0-beta.1", | ||
"vue": "^3.2.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@harlem/extension-history", | ||
"amdName": "harlemHistory", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"license": "MIT", | ||
"author": "Andrew Courtice <[email protected]>", | ||
"description": "The official history extension for Harlem", | ||
|
@@ -39,14 +39,14 @@ | |
"prepublish": "yarn build" | ||
}, | ||
"dependencies": { | ||
"@harlem/extension-trace": "^2.0.0-beta.0", | ||
"@harlem/utilities": "^2.0.0-beta.0" | ||
"@harlem/extension-trace": "^2.0.0-beta.1", | ||
"@harlem/utilities": "^2.0.0-beta.1" | ||
}, | ||
"peerDependencies": { | ||
"@harlem/core": "^2.0.0-alpha.0" | ||
}, | ||
"devDependencies": { | ||
"@harlem/core": "^2.0.0-beta.0", | ||
"@harlem/testing": "^2.0.0-beta.0" | ||
"@harlem/core": "^2.0.0-beta.1", | ||
"@harlem/testing": "^2.0.0-beta.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@harlem/extension-lazy", | ||
"amdName": "harlemLazy", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"license": "MIT", | ||
"author": "Andrew Courtice <[email protected]>", | ||
"description": "The official lazy extension for Harlem", | ||
|
@@ -43,8 +43,8 @@ | |
"vue": "^3.2.0" | ||
}, | ||
"devDependencies": { | ||
"@harlem/core": "^2.0.0-beta.0", | ||
"@harlem/testing": "^2.0.0-beta.0", | ||
"@harlem/core": "^2.0.0-beta.1", | ||
"@harlem/testing": "^2.0.0-beta.1", | ||
"vue": "^3.2.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@harlem/extension-reset", | ||
"amdName": "harlemReset", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"license": "MIT", | ||
"author": "Andrew Courtice <[email protected]>", | ||
"description": "The official reset extension for Harlem", | ||
|
@@ -42,10 +42,10 @@ | |
"@harlem/core": "^2.0.0-alpha.0" | ||
}, | ||
"dependencies": { | ||
"@harlem/extension-snapshot": "^2.0.0-beta.0" | ||
"@harlem/extension-snapshot": "^2.0.0-beta.1" | ||
}, | ||
"devDependencies": { | ||
"@harlem/core": "^2.0.0-beta.0", | ||
"@harlem/testing": "^2.0.0-beta.0" | ||
"@harlem/core": "^2.0.0-beta.1", | ||
"@harlem/testing": "^2.0.0-beta.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@harlem/extension-snapshot", | ||
"amdName": "harlemSnapshot", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"license": "MIT", | ||
"author": "Andrew Courtice <[email protected]>", | ||
"description": "The official snapshot extension for Harlem", | ||
|
@@ -42,10 +42,10 @@ | |
"@harlem/core": "^2.0.0-alpha.0" | ||
}, | ||
"dependencies": { | ||
"@harlem/utilities": "^2.0.0-beta.0" | ||
"@harlem/utilities": "^2.0.0-beta.1" | ||
}, | ||
"devDependencies": { | ||
"@harlem/core": "^2.0.0-beta.0", | ||
"@harlem/testing": "^2.0.0-beta.0" | ||
"@harlem/core": "^2.0.0-beta.1", | ||
"@harlem/testing": "^2.0.0-beta.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@harlem/extension-storage", | ||
"amdName": "harlemStorage", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"license": "MIT", | ||
"author": "Andrew Courtice <[email protected]>", | ||
"description": "The official storage extension for Harlem", | ||
|
@@ -42,6 +42,6 @@ | |
"@harlem/core": "^2.0.0-alpha.0" | ||
}, | ||
"devDependencies": { | ||
"@harlem/core": "^2.0.0-beta.0" | ||
"@harlem/core": "^2.0.0-beta.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@harlem/extension-trace", | ||
"amdName": "harlemTrace", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"license": "MIT", | ||
"author": "Andrew Courtice <[email protected]>", | ||
"description": "The official trace extension for Harlem", | ||
|
@@ -42,10 +42,10 @@ | |
"@harlem/core": "^2.0.0-alpha.0" | ||
}, | ||
"dependencies": { | ||
"@harlem/utilities": "^2.0.0-beta.0" | ||
"@harlem/utilities": "^2.0.0-beta.1" | ||
}, | ||
"devDependencies": { | ||
"@harlem/core": "^2.0.0-beta.0", | ||
"@harlem/testing": "^2.0.0-beta.0" | ||
"@harlem/core": "^2.0.0-beta.1", | ||
"@harlem/testing": "^2.0.0-beta.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@harlem/extension-transaction", | ||
"amdName": "harlemTransaction", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"license": "MIT", | ||
"author": "Andrew Courtice <[email protected]>", | ||
"description": "The official transaction extension for Harlem", | ||
|
@@ -42,9 +42,9 @@ | |
"@harlem/core": "^2.0.0-alpha.0" | ||
}, | ||
"dependencies": { | ||
"@harlem/utilities": "^2.0.0-beta.0" | ||
"@harlem/utilities": "^2.0.0-beta.1" | ||
}, | ||
"devDependencies": { | ||
"@harlem/core": "^2.0.0-beta.0" | ||
"@harlem/core": "^2.0.0-beta.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@harlem/task", | ||
"amdName": "harlemTask", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"license": "MIT", | ||
"author": "Andrew Courtice <[email protected]>", | ||
"description": "Harlem task package", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@harlem/testing", | ||
"private": true, | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"license": "MIT", | ||
"author": "Andrew Courtice <[email protected]>", | ||
"description": "Harlem testing package", | ||
|
@@ -10,7 +10,7 @@ | |
"build": "echo \"No Build Required\"" | ||
}, | ||
"dependencies": { | ||
"@harlem/core": "^2.0.0-beta.0" | ||
"@harlem/core": "^2.0.0-beta.1" | ||
}, | ||
"devDependencies": { | ||
"@harlem/core": "^2.0.0-alpha.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@harlem/utilities", | ||
"amdName": "harlemUtilities", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"license": "MIT", | ||
"author": "Andrew Courtice <[email protected]>", | ||
"description": "Harlem utilities package", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@harlem/plugin-devtools", | ||
"amdName": "harlemDevtools", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"license": "MIT", | ||
"author": "Andrew Courtice <[email protected]>", | ||
"description": "The official Vue devtools plugin for Harlem", | ||
|
@@ -45,6 +45,6 @@ | |
"@vue/devtools-api": "^6.0.0-beta.15" | ||
}, | ||
"devDependencies": { | ||
"@harlem/core": "^2.0.0-beta.0" | ||
"@harlem/core": "^2.0.0-beta.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@harlem/plugin-ssr", | ||
"amdName": "harlemSSR", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"license": "MIT", | ||
"author": "Andrew Courtice <[email protected]>", | ||
"description": "The official server-side rendering plugin for Harlem", | ||
|
@@ -42,9 +42,9 @@ | |
"@harlem/core": "^2.0.0-alpha.0" | ||
}, | ||
"dependencies": { | ||
"@harlem/utilities": "^2.0.0-beta.0" | ||
"@harlem/utilities": "^2.0.0-beta.1" | ||
}, | ||
"devDependencies": { | ||
"@harlem/core": "^2.0.0-beta.0" | ||
"@harlem/core": "^2.0.0-beta.1" | ||
} | ||
} |