Skip to content

Commit

Permalink
v8.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jtenner committed Apr 18, 2023
1 parent df73e1a commit aa6aa77
Show file tree
Hide file tree
Showing 9 changed files with 830 additions and 306 deletions.
6 changes: 2 additions & 4 deletions lerna.json
@@ -1,6 +1,4 @@
{
"packages": [
"packages/*"
],
"version": "8.0.1"
"packages": ["packages/*"],
"version": "8.1.0"
}
1,098 changes: 812 additions & 286 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/assembly/package.json
@@ -1,6 +1,6 @@
{
"name": "@as-pect/assembly",
"version": "8.0.1",
"version": "8.1.0",
"description": "Write AssemblyScript tests at blazing fast speeds",
"types": "types/as-pect.d.ts",
"type": "module",
Expand Down
12 changes: 6 additions & 6 deletions packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@as-pect/cli",
"version": "8.0.1",
"version": "8.1.0",
"description": "Write AssemblyScript tests at blazing fast speeds",
"exports": {
".": "./lib/index.js"
Expand Down Expand Up @@ -37,9 +37,9 @@
"dependencies": {
"@as-covers/core": "0.4.2",
"@as-covers/transform": "0.4.2",
"@as-pect/assembly": "^8.0.1",
"@as-pect/core": "^8.0.1",
"@as-pect/transform": "^8.0.1",
"@as-pect/assembly": "^8.1.0",
"@as-pect/core": "^8.1.0",
"@as-pect/transform": "^8.1.0",
"chalk": "^5.2.0",
"chalk-template": "^0.4.0",
"commander": "^9.4.1",
Expand All @@ -53,8 +53,8 @@
"assemblyscript": "^0.27.2"
},
"optionalDependencies": {
"@as-pect/csv-reporter": "^8.0.1",
"@as-pect/json-reporter": "^8.0.1"
"@as-pect/csv-reporter": "^8.1.0",
"@as-pect/json-reporter": "^8.1.0"
},
"files": [
"init/",
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@as-pect/core",
"version": "8.0.1",
"version": "8.1.0",
"description": "Write AssemblyScript tests at blazing fast speeds",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -41,8 +41,8 @@
},
"homepage": "https://github.com/jtenner/as-pect#readme",
"dependencies": {
"@as-pect/assembly": "^8.0.1",
"@as-pect/snapshots": "^8.0.1",
"@as-pect/assembly": "^8.1.0",
"@as-pect/snapshots": "^8.1.0",
"@assemblyscript/loader": "^0.25.0",
"assemblyscript": "^0.27.2",
"chalk": "^5.2.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/csv-reporter/package.json
@@ -1,6 +1,6 @@
{
"name": "@as-pect/csv-reporter",
"version": "8.0.1",
"version": "8.1.0",
"description": "csv reporter for as-pect",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -19,6 +19,6 @@
"csv-stringify": "^6.2.3"
},
"dependencies": {
"@as-pect/core": "^8.0.1"
"@as-pect/core": "^8.1.0"
}
}
4 changes: 2 additions & 2 deletions packages/json-reporter/package.json
@@ -1,6 +1,6 @@
{
"name": "@as-pect/json-reporter",
"version": "8.0.1",
"version": "8.1.0",
"description": "Json reporter for as-pect",
"main": "lib/index.js",
"types": "lib/index.ts",
Expand All @@ -16,6 +16,6 @@
"author": "Joshua Tenner",
"license": "MIT",
"dependencies": {
"@as-pect/core": "^8.0.1"
"@as-pect/core": "^8.1.0"
}
}
2 changes: 1 addition & 1 deletion packages/snapshots/package.json
@@ -1,6 +1,6 @@
{
"name": "@as-pect/snapshots",
"version": "8.0.1",
"version": "8.1.0",
"description": "A package for dealing with snapshots",
"main": "lib/index.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/transform/package.json
@@ -1,6 +1,6 @@
{
"name": "@as-pect/transform",
"version": "8.0.1",
"version": "8.1.0",
"description": "The transform used by the as-pect core and assembly packages to enable strict equality.",
"main": "lib/index.js",
"type": "module",
Expand Down

0 comments on commit aa6aa77

Please sign in to comment.