Skip to content

Commit

Permalink
Stopify 0.7.3
Browse files Browse the repository at this point in the history
- Polyfills for some higher-order functions that were recently added
  to JavaScript. I'm sure more remain, but these are the ones that
  were requested.
- The `--require-runtime` flag had stopped working, but now works again.
- GitHub's Dependabot upgraded several packages for us. Since Stopify
  is well-tested, I'm confident that they did not break anything.
  • Loading branch information
arjunguha committed Jan 11, 2021
1 parent e81a3b9 commit 8669372
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions hygiene/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stopify/hygiene",
"version": "0.7.0",
"version": "0.7.3",
"main": "dist/ts/index.js",
"typings": "dist/ts/index.d.ts",
"license": "BSD-3-Clause",
Expand All @@ -14,7 +14,7 @@
"typescript": "^3.4.4"
},
"dependencies": {
"@stopify/util": "0.7.0",
"@stopify/util": "0.7.3",
"babel-core": "^6.26.3",
"babel-traverse": "^6.26.0",
"babel-types": "^6.26.0",
Expand Down
6 changes: 3 additions & 3 deletions normalize-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stopify/normalize-js",
"version": "0.7.1",
"version": "0.7.3",
"description": "An ANF-inspired normalization of JavaScript",
"main": "dist/ts/index",
"typings": "dist/ts/index",
Expand Down Expand Up @@ -53,8 +53,8 @@
"source-map": "^0.6.0",
"source-map-support": "^0.5.6",
"trie": "^0.2.1",
"@stopify/util": "0.7.0",
"@stopify/hygiene": "0.7.0"
"@stopify/util": "0.7.3",
"@stopify/hygiene": "0.7.3"
},
"jest": {
"roots": [
Expand Down
8 changes: 4 additions & 4 deletions stopify-continuations-compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stopify/continuations",
"version": "0.7.1",
"version": "0.7.3",
"description": "Continuations for JavaScript",
"main": "dist/src/index",
"typings": "dist/src/index",
Expand All @@ -19,7 +19,7 @@
"jest": "^24.7.1",
"typescript": "^3.4.4",
"webpack": "^3.10.0",
"@stopify/continuations-runtime": "0.7.1"
"@stopify/continuations-runtime": "0.7.3"
},
"scripts": {
"build": "./bin/build",
Expand All @@ -40,8 +40,8 @@
],
"license": "BSD-3-Clause",
"dependencies": {
"@stopify/normalize-js": "0.7.0",
"@stopify/util": "0.7.0",
"@stopify/normalize-js": "0.7.3",
"@stopify/util": "0.7.3",
"babel-core": "^6.26.3",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-traverse": "^6.26.0",
Expand Down
2 changes: 1 addition & 1 deletion stopify-continuations/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stopify/continuations-runtime",
"version": "0.7.1",
"version": "0.7.3",
"description": "Continuation Runtime",
"main": "dist/src/index",
"typings": "dist/src/index",
Expand Down
2 changes: 1 addition & 1 deletion stopify-estimators/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stopify/estimators",
"version": "0.7.0",
"version": "0.7.3",
"description": "Elapsed-time estimators for JavaScript",
"main": "dist/src/elapsedTimeEstimator",
"typings": "dist/src/elapsedTimeEstimator",
Expand Down
2 changes: 1 addition & 1 deletion stopify-higher-order-functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stopify/higher-order-functions",
"version": "0.7.1",
"version": "0.7.3",
"description": "A polyfill for higher-order functions that are compatible with Stopify",
"main": "dist/ts/index",
"typings": "dist/ts/index",
Expand Down
14 changes: 7 additions & 7 deletions stopify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stopify/stopify",
"version": "0.7.2",
"version": "0.7.3",
"description": "Stopify makes JavaScript a better target language for high-level languages and web-based programming tools",
"main": "dist/src/index.js",
"typings": "dist/src/index",
Expand Down Expand Up @@ -54,12 +54,12 @@
],
"license": "BSD-3-Clause",
"dependencies": {
"@stopify/continuations": "0.7.1",
"@stopify/continuations-runtime": "0.7.1",
"@stopify/estimators": "0.7.0",
"@stopify/hygiene": "0.7.0",
"@stopify/normalize-js": "0.7.0",
"@stopify/util": "0.7.0",
"@stopify/continuations": "0.7.3",
"@stopify/continuations-runtime": "0.7.3",
"@stopify/estimators": "0.7.3",
"@stopify/hygiene": "0.7.3",
"@stopify/normalize-js": "0.7.3",
"@stopify/util": "0.7.3",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
Expand Down
2 changes: 1 addition & 1 deletion util/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stopify/util",
"version": "0.7.0",
"version": "0.7.3",
"main": "dist/ts/index.js",
"typings": "dist/ts/index.d.ts",
"license": "BSD-3-Clause",
Expand Down

0 comments on commit 8669372

Please sign in to comment.