Skip to content

Commit

Permalink
v1.0.0-rc.4
Browse files Browse the repository at this point in the history
  • Loading branch information
geelen committed Jun 19, 2020
1 parent 3127ba2 commit 1249317
Show file tree
Hide file tree
Showing 18 changed files with 51 additions and 54 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Expand Up @@ -2,5 +2,5 @@
"packages": ["packages/*"],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "1.0.0-rc.3"
"version": "1.0.0-rc.4"
}
4 changes: 2 additions & 2 deletions packages/_fab/package.json
@@ -1,6 +1,6 @@
{
"name": "fab",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"description": "An alias for @fab/cli",
"keywords": [
"fab"
Expand All @@ -27,7 +27,7 @@
"prepack": "cat PREAMBLE.md > README.md && cat ../cli/README.md >> README.md"
},
"dependencies": {
"@fab/cli": "1.0.0-rc.3"
"@fab/cli": "1.0.0-rc.4"
},
"gitHead": "e0232b0579fb886d567c62ad793a128ff4ea34de"
}
6 changes: 3 additions & 3 deletions packages/actions/package.json
@@ -1,6 +1,6 @@
{
"name": "@fab/actions",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"private": false,
"description": "The guts of the FAB cli code, keeping the 'fab' package lean",
"keywords": [
Expand Down Expand Up @@ -31,8 +31,8 @@
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"dependencies": {
"@fab/cli": "1.0.0-rc.3",
"@fab/core": "1.0.0-rc.3",
"@fab/cli": "1.0.0-rc.4",
"@fab/core": "1.0.0-rc.4",
"@rollup/plugin-alias": "^2.2.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-inject": "^4.0.1",
Expand Down
18 changes: 12 additions & 6 deletions packages/cli/README.md
Expand Up @@ -21,7 +21,7 @@ $ npm install -g @fab/cli
$ fab COMMAND
running command...
$ fab (-v|--version|version)
@fab/cli/1.0.0-rc.3 darwin-x64 node-v13.12.0
@fab/cli/1.0.0-rc.4 darwin-x64 node-v13.12.0
$ fab --help [COMMAND]
USAGE
$ fab COMMAND
Expand Down Expand Up @@ -54,12 +54,16 @@ OPTIONS
-h, --help show CLI help
--skip-cache Skip any caching of intermediate build artifacts
--watch=watch Re-run the builder if any of the listed files change. Pass this argument multiple times to watch
multiple files/directories.
EXAMPLES
$ fab build
$ fab build --config=fab.config.json5
$ fab build --watch dist --watch fab.config.json5
```

_See code: [lib/commands/build.js](https://github.com/fab-spec/fab/blob/v1.0.0-rc.3/lib/commands/build.js)_
_See code: [lib/commands/build.js](https://github.com/fab-spec/fab/blob/v1.0.0-rc.4/lib/commands/build.js)_

## `fab deploy [FILE]`

Expand Down Expand Up @@ -96,7 +100,7 @@ EXAMPLE
$ fab deploy fab.zip
```

_See code: [lib/commands/deploy.js](https://github.com/fab-spec/fab/blob/v1.0.0-rc.3/lib/commands/deploy.js)_
_See code: [lib/commands/deploy.js](https://github.com/fab-spec/fab/blob/v1.0.0-rc.4/lib/commands/deploy.js)_

## `fab help [COMMAND]`

Expand Down Expand Up @@ -136,7 +140,7 @@ EXAMPLES
$ fab init --config=fab.config.json5
```

_See code: [lib/commands/init.js](https://github.com/fab-spec/fab/blob/v1.0.0-rc.3/lib/commands/init.js)_
_See code: [lib/commands/init.js](https://github.com/fab-spec/fab/blob/v1.0.0-rc.4/lib/commands/init.js)_

## `fab package [FILE]`

Expand Down Expand Up @@ -165,7 +169,7 @@ EXAMPLE
$ fab package --target=aws-lambda-edge fab.zip
```

_See code: [lib/commands/package.js](https://github.com/fab-spec/fab/blob/v1.0.0-rc.3/lib/commands/package.js)_
_See code: [lib/commands/package.js](https://github.com/fab-spec/fab/blob/v1.0.0-rc.4/lib/commands/package.js)_

## `fab serve [FILE]`

Expand Down Expand Up @@ -193,13 +197,15 @@ OPTIONS
--port=port (required) [default: 3000] Port to use
--watch EXPERIMENTAL: Watches fab.zip and restarts the server when it changes.
EXAMPLES
$ fab serve fab.zip
$ fab serve --port=3001 fab.zip
$ fab serve --cert=local-ssl.cert --key=local-ssl.key fab.zip
$ fab serve --env=staging fab.zip
```

_See code: [lib/commands/serve.js](https://github.com/fab-spec/fab/blob/v1.0.0-rc.3/lib/commands/serve.js)_
_See code: [lib/commands/serve.js](https://github.com/fab-spec/fab/blob/v1.0.0-rc.4/lib/commands/serve.js)_

<!-- commandsstop -->
4 changes: 2 additions & 2 deletions packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@fab/cli",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"description": "The CLI entry-point for the FAB ecosystem",
"keywords": [
"fab",
Expand Down Expand Up @@ -35,7 +35,7 @@
"version": "oclif-dev readme && git add README.md"
},
"dependencies": {
"@fab/core": "1.0.0-rc.3",
"@fab/core": "1.0.0-rc.4",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/errors": "^1",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@fab/core",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"private": false,
"description": "Common code for all FAB projects",
"keywords": [
Expand Down
6 changes: 3 additions & 3 deletions packages/deployer-aws-lambda/package.json
@@ -1,6 +1,6 @@
{
"name": "@fab/deployer-aws-lambda",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"description": "Packages and deploys FABs to AWS Lambda@Edge",
"keywords": [
"aws",
Expand Down Expand Up @@ -33,8 +33,8 @@
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"dependencies": {
"@fab/cli": "1.0.0-rc.3",
"@fab/core": "1.0.0-rc.3",
"@fab/cli": "1.0.0-rc.4",
"@fab/core": "1.0.0-rc.4",
"@types/nanoid": "^2.1.0",
"@types/node": "^12.12.14",
"deterministic-zip": "^1.1.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/deployer-aws-s3/package.json
@@ -1,6 +1,6 @@
{
"name": "@fab/deployer-aws-s3",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"description": "Uploads FAB assets to AWS S3",
"keywords": [
"aws",
Expand Down Expand Up @@ -32,8 +32,8 @@
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"dependencies": {
"@fab/cli": "1.0.0-rc.3",
"@fab/core": "1.0.0-rc.3",
"@fab/cli": "1.0.0-rc.4",
"@fab/core": "1.0.0-rc.4",
"@types/node": "^12.12.14",
"aws-sdk": "^2.655.0",
"fs-extra": "^9.0.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/deployer-cf-workers/package.json
@@ -1,6 +1,6 @@
{
"name": "@fab/deployer-cf-workers",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"description": "Packages and deploys FABs to AWS Lambda@Edge",
"keywords": [
"cloudflare",
Expand Down Expand Up @@ -33,8 +33,8 @@
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"dependencies": {
"@fab/cli": "1.0.0-rc.3",
"@fab/core": "1.0.0-rc.3",
"@fab/cli": "1.0.0-rc.4",
"@fab/core": "1.0.0-rc.4",
"@types/node": "^12.12.14",
"cross-fetch": "^3.0.4",
"file-to-sha512": "^0.0.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/input-nextjs/package.json
@@ -1,6 +1,6 @@
{
"name": "@fab/input-nextjs",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"description": "Module to kick off a FAB build from a NextJS project",
"keywords": [
"aws",
Expand Down Expand Up @@ -34,8 +34,8 @@
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"dependencies": {
"@fab/cli": "1.0.0-rc.3",
"@fab/core": "1.0.0-rc.3",
"@fab/cli": "1.0.0-rc.4",
"@fab/core": "1.0.0-rc.4",
"@types/node": "^12.12.14",
"@types/path-to-regexp": "^1.7.0",
"acorn": "^7.1.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/input-static/package.json
@@ -1,6 +1,6 @@
{
"name": "@fab/input-static",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"description": "Module to handle a directory of HTML & assets",
"keywords": [
"fab",
Expand Down Expand Up @@ -31,8 +31,8 @@
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"dependencies": {
"@fab/cli": "1.0.0-rc.3",
"@fab/core": "1.0.0-rc.3",
"@fab/cli": "1.0.0-rc.4",
"@fab/core": "1.0.0-rc.4",
"@types/node": "^12.12.14",
"fs-extra": "^8.1.0",
"globby": "^10"
Expand Down
6 changes: 3 additions & 3 deletions packages/plugin-node-compat/package.json
@@ -1,6 +1,6 @@
{
"name": "@fab/plugin-node-compat",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"description": "Module to render static HTML files with FAB injections",
"keywords": [
"fab"
Expand Down Expand Up @@ -30,8 +30,8 @@
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"dependencies": {
"@fab/cli": "1.0.0-rc.3",
"@fab/core": "1.0.0-rc.3",
"@fab/cli": "1.0.0-rc.4",
"@fab/core": "1.0.0-rc.4",
"@types/node": "^12.12.14"
},
"publishConfig": {
Expand Down
2 changes: 0 additions & 2 deletions packages/plugin-node-compat/runtime.js

This file was deleted.

7 changes: 0 additions & 7 deletions packages/plugin-node-compat/src/runtime.ts

This file was deleted.

6 changes: 3 additions & 3 deletions packages/plugin-render-html/package.json
@@ -1,6 +1,6 @@
{
"name": "@fab/plugin-render-html",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"description": "Module to render static HTML files with FAB injections",
"keywords": [
"fab"
Expand Down Expand Up @@ -30,8 +30,8 @@
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"dependencies": {
"@fab/cli": "1.0.0-rc.3",
"@fab/core": "1.0.0-rc.3",
"@fab/cli": "1.0.0-rc.4",
"@fab/core": "1.0.0-rc.4",
"@types/cheerio": "^0.22.15",
"@types/node": "^12.12.14",
"cheerio": "^1.0.0-rc.3",
Expand Down
6 changes: 3 additions & 3 deletions packages/plugin-rewire-assets/package.json
@@ -1,6 +1,6 @@
{
"name": "@fab/plugin-rewire-assets",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"description": "Module to handle files outside _assets",
"keywords": [
"assets",
Expand Down Expand Up @@ -32,8 +32,8 @@
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"dependencies": {
"@fab/cli": "1.0.0-rc.3",
"@fab/core": "1.0.0-rc.3",
"@fab/cli": "1.0.0-rc.4",
"@fab/core": "1.0.0-rc.4",
"@types/istextorbinary": "^2.3.0",
"@types/mime-types": "^2.1.0",
"@types/node": "^12.12.14",
Expand Down
4 changes: 2 additions & 2 deletions packages/sandbox-node-vm/package.json
@@ -1,6 +1,6 @@
{
"name": "@fab/sandbox-node-vm",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"description": "FAB runtime sandbox using Node's 'vm'",
"keywords": [
"fab",
Expand Down Expand Up @@ -29,7 +29,7 @@
"prepack": "npm run clean && npm run build"
},
"dependencies": {
"@fab/core": "1.0.0-rc.3",
"@fab/core": "1.0.0-rc.4",
"node-fetch": "^2.6.0",
"web-streams-ponyfill": "^1.4.2"
},
Expand Down
8 changes: 4 additions & 4 deletions packages/server/package.json
@@ -1,6 +1,6 @@
{
"name": "@fab/server",
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"description": "NodeJS FAB Server",
"keywords": [
"fab",
Expand Down Expand Up @@ -30,9 +30,9 @@
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"dependencies": {
"@fab/cli": "1.0.0-rc.3",
"@fab/core": "1.0.0-rc.3",
"@fab/sandbox-node-vm": "1.0.0-rc.3",
"@fab/cli": "1.0.0-rc.4",
"@fab/core": "1.0.0-rc.4",
"@fab/sandbox-node-vm": "1.0.0-rc.4",
"@fly/v8env": "^0.54.0",
"@types/concat-stream": "^1.6.0",
"@types/express": "^4.17.2",
Expand Down

0 comments on commit 1249317

Please sign in to comment.