Compare commits

..

91 Commits

Author SHA1 Message Date
Igor Klopov
495c193a40 Publish
- @now/build-utils@0.4.31-canary.1
 - @now/lambda@0.4.8-canary.0
 - @now/md@0.4.8-canary.1
 - @now/mdx-deck@0.4.17-canary.2
 - @now/node-server@0.4.25-canary.2
 - @now/node@0.4.27-canary.2
 - @now/php@0.4.12-canary.2
 - @now/static-build@0.4.16-canary.1
2018-12-04 02:03:45 +03:00
Igor Klopov
9d77d89513 bump ncc to 0.3.0 (#113) 2018-12-04 02:00:33 +03:00
Igor Klopov
bcffe0db91 take random token from pool if CIRCLE_BUILD_NUM is absent 2018-12-04 01:02:21 +03:00
Igor Klopov
228892fe9f pass API_HOST from process.env, don't write auth.json 2018-12-04 00:29:46 +03:00
Igor Klopov
c7d434c81d More tests 4 (#112)
* replace RANDOMNESS_PLACEHOLDER in all files

* [wip] test for now/lambda

* fix for lambda test

* testDeployment to return { deploymentId, deploymentUrl }
2018-12-04 00:03:25 +03:00
Igor Klopov
66bf4aa25a Publish
- @now/md@0.4.8-canary.0
 - @now/mdx-deck@0.4.17-canary.1
 - @now/next@0.0.81-canary.1
 - @now/node-server@0.4.25-canary.1
 - @now/node@0.4.27-canary.1
 - @now/php@0.4.12-canary.1
 - @now/static-build@0.4.16-canary.0
2018-12-03 04:54:10 +03:00
Igor Klopov
f328a53a3f bump ncc to 0.2.0 (#110) 2018-12-03 04:51:20 +03:00
Tim Neutkens
168b4cf2bb Include /static directory for now/next (#109) 2018-12-02 18:40:13 +01:00
Thomas Lindstrøm
a91e3da7d8 Support default export from import/export syntax (#30)
Fix issue where files using new `import/export` syntax ran into 502 when also exporting other named exports.
https://spectrum.chat/thread/4322e805-b8ba-43d2-96e2-98b2497724e3

```
const data = {};

export default function handler(request, response) {
  response.end('hello');
}

export {data};
```
2018-11-30 08:17:07 +03:00
Igor Klopov
756c452203 bump ncc in node-server and node 2018-11-30 07:59:11 +03:00
Igor Klopov
80db1937f8 take pool position from CIRCLE_BUILD_NUM 2018-11-29 05:35:45 +03:00
Igor Klopov
d9df4b0929 pick auth token from pool 2018-11-29 05:10:47 +03:00
Igor Klopov
08c52ebbf2 More tests 3 (#101)
* test for now/md

* yarn.lock is not needed in apollo anymore

* test for now/mdx
2018-11-29 04:39:29 +03:00
Tim Neutkens
fe8ead391a Publish
- @now/next@0.0.81-canary.0
2018-11-28 19:21:44 +01:00
Tim Neutkens
5d45f2df31 @now/next Fix prepareCache (#98) 2018-11-28 19:19:01 +01:00
Nathan Rajlich
1385c1ca48 Add yarn.lock file to root 2018-11-27 16:10:36 -08:00
Nathan Rajlich
4c63009123 Add manual publish instructions to README 2018-11-27 16:10:18 -08:00
Nathan Rajlich
389c85cef5 Publish
- @now/go@0.2.11-canary.0
 - @now/mdx-deck@0.4.17-canary.0
2018-11-27 16:06:37 -08:00
Vince Picone
227c239bbc [now/mdx-deck] update mdx-deck to v1.7.15 (#86)
* Update mdx-deck dependancy

Builds failing due to a breaking change in babel-plugin-styled-components 1.9.0. Updates mdx-deck to a version with babel-plugin-styled-components pinned to 1.8.0.

https://github.com/jxnblk/mdx-deck/issues/228

Related: https://github.com/styled-components/babel-plugin-styled-components/issues/182

* Only changed version in one place.
2018-11-27 15:58:10 -08:00
Nathan Rajlich
b93736132a [now-go] always send the response as base64 (#85)
This is in-line with the CGI and PHP (#83) builders.

(Side note: we really need to make a common go import for this logic…)
2018-11-27 15:51:05 -08:00
Igor Klopov
26849422ff Publish
- @now/build-utils@0.4.31-canary.0
 - @now/node-server@0.4.25-canary.0
 - @now/node@0.4.27-canary.0
2018-11-28 02:18:45 +03:00
Igor Klopov
31dd1ca491 build-utils: inject memory-fs for yarn cache (#91)
* build-utils: inject memory-fs for yarn cache

* ditch shelljs dependency

* try to cover circle ci odd yarn installation

* Revert "try to cover circle ci odd yarn installation"

This reverts commit 751949a5dd209bab34934042eba3be1904a86ac9.

* use in-memory cache for aws only

* separate isInsideCachePath function

* print 'using memory-fs for yarn cache'

* wrong name. isInsideCachePath -> isOutsideCachePath
2018-11-27 22:12:37 +03:00
Igor Klopov
04a1ce89b3 bump ncc in node-server and node 2018-11-27 22:00:56 +03:00
Igor Klopov
3e247fd16d Tests for ncc assets (#82)
* [wip] added a test for ncc assets

* bump ncc, add 08-assets test to node-server as well

* builder-utils: don't run all fixtures, just some
2018-11-27 05:58:26 +03:00
Nathan Rajlich
9e127421ad Publish
- @now/php@0.4.12-canary.0
2018-11-26 16:51:13 -08:00
Nathan Rajlich
337d0cb1ed [now-php] set the proper response status code (#84)
1. The initial status code should be 200 (so that the first PHP call to `http_status_code` returns 200, as per the PHP documentation).
1. Extract the resulting status code and return it in the response.
2018-11-26 16:47:44 -08:00
Nathan Rajlich
ad3cdf46f4 [now-php] always send the response as base64 (#83)
This should address https://spectrum.chat/zeit/general/corrupted-image-using-php~9fbb8cc5-b210-49d1-8934-b393a628219f
2018-11-26 16:34:21 -08:00
Igor Klopov
9a93713158 Publish
- @now/build-utils@0.4.30
 - @now/cgi@0.0.13
 - @now/go@0.2.10
 - @now/html-minifier@1.0.6
 - @now/lambda@0.4.7
 - @now/md@0.4.7
 - @now/mdx-deck@0.4.16
 - @now/next@0.0.80
 - @now/node-bridge@0.1.9
 - @now/node-server@0.4.24
 - @now/node@0.4.26
 - @now/optipng@0.4.7
 - @now/php@0.4.11
 - @now/python@0.0.40
 - @now/static-build@0.4.15
2018-11-26 04:16:16 +03:00
Igor Klopov
3392ef5636 [now-php] compile launcher binary 2018-11-26 03:48:52 +03:00
Igor Klopov
9236e2b584 Publish
- @now/build-utils@0.4.30-canary.6
 - @now/node-server@0.4.24-canary.8
 - @now/node@0.4.26-canary.8
 - @now/php@0.4.11-canary.7
 - @now/static-build@0.4.15-canary.7
2018-11-26 02:44:14 +03:00
Igor Klopov
ffc4686ab9 now/node-server: take assets from ncc into zip 2018-11-25 22:28:58 +03:00
Igor Klopov
1ff4b6bb4b now/node: take assets from ncc into zip 2018-11-25 22:15:07 +03:00
Igor Klopov
0e7d8c3ff1 node-server and node: bump ncc, yet without assets 2018-11-25 21:18:08 +03:00
Igor Klopov
86885b8c38 yarn/npm test for build-utils 2018-11-25 20:48:29 +03:00
Igor Klopov
8563f2b8b5 remove confusing now-build script not found from logs 2018-11-25 17:58:31 +03:00
Igor Klopov
c36938bd95 Tests for now/build-utils (#74)
* rearrange testDeployment arguments

* added tests for build-utils

* print what page failed probe check

* make opposing package be always at least canary
2018-11-25 05:16:17 +03:00
Igor Klopov
957ab6c4e3 Publish
- @now/cgi@0.0.13-canary.6
 - @now/go@0.2.10-canary.6
 - @now/node-server@0.4.24-canary.7
 - @now/node@0.4.26-canary.7
 - @now/php@0.4.11-canary.6
 - @now/static-build@0.4.15-canary.6
2018-11-24 02:35:01 +03:00
Nathan Rajlich
069e9b4052 [circle-ci] set GOPATH to ~/go (#72)
Attempting to fix this error:

```
> @now/cgi@0.0.13-canary.3 prepublish /home/circleci/repo/packages/now-cgi
> ./build.sh

main.go:14:2: cannot find package "github.com/aws/aws-lambda-go/events" in any of:
	/usr/lib/go/src/pkg/github.com/aws/aws-lambda-go/events (from $GOROOT)
	($GOPATH not set)
main.go:15:2: cannot find package "github.com/aws/aws-lambda-go/lambda" in any of:
	/usr/lib/go/src/pkg/github.com/aws/aws-lambda-go/lambda (from $GOROOT)
	($GOPATH not set)
```
2018-11-23 22:13:13 +01:00
Igor Klopov
0b06704be6 More tests 2 (#71)
* rename to let cowsays be together

* test for script.sh for static-build

* make env-vars 03 across builders

* 03-env-vars test for static-build
2018-11-23 17:44:07 +03:00
Igor Klopov
cf5a49e699 Node-server bundle=false (#70)
* copy node-server/index.js from node/index.js

* no need to promisify fs if we have fs-extra

* few renames to clarify what for they are

* node-server: config.bundle = false

* builder code fixes and tests

* fix maxLambdaSize back
2018-11-23 04:51:09 +03:00
Matheus Fernandes
b671b23d8d [now-go] Fix typo when setting the Host value (#66)
* `req.Host` -> `internalReq.Host`

* Add comments
2018-11-22 14:50:31 -08:00
Igor Klopov
fa44c23225 env vars test for now/php (#68) 2018-11-22 21:40:13 +03:00
Igor Klopov
ba9da3cec5 collect test fixtures via readdir 2018-11-22 17:27:17 +03:00
Igor Klopov
0909aaf2b3 Test env vars (#65)
* move 02-others to 10-others

* add 02-env-vars for node-server

* added 02-env-vars for now/node
2018-11-22 15:14:35 +03:00
Nathan Rajlich
e276342a6f [now-cgi] add HTTPS and SERVER_SOFTWARE env vars 2018-11-21 15:51:44 -08:00
Igor Klopov
f6e1bdf0a1 simple test for now/php 2018-11-22 02:29:50 +03:00
Igor Klopov
2c2189b661 add npmignore to prevent publishing 'test' directory 2018-11-22 01:43:29 +03:00
Igor Klopov
61522e2bc7 show deploymentUrl if state is ERROR. othw not clear from ci logs 2018-11-21 23:01:51 +03:00
Igor Klopov
a20f3a5920 test for static-build with 300 generated files 2018-11-21 22:40:23 +03:00
Igor Klopov
a5e58c2a8d bump to ncc 0.1.6 and enable apollo test 2018-11-21 22:26:41 +03:00
Igor Klopov
a58451548f simple tests for now/static-build 2018-11-21 19:11:52 +03:00
Igor Klopov
8e846c50b5 Pack testing 3 (#58)
* produce builder targz in jest.beforeAll

* improve fetchDeploymentUrl

* wait for deployment to become READY
2018-11-21 05:30:22 +03:00
Igor Klopov
7613dcf68b Pack testing 2 (#57)
* include new pack testing into 'yarn test'

* take now auth token from env var

* mkdirp(authJsonPath)
2018-11-21 00:21:03 +03:00
Nathan Rajlich
bea499cad3 [@now/php] remove unnecessary log line upon cold start (#44) 2018-11-20 11:46:28 -08:00
Igor Klopov
0f20a0dbbf [wip] Pack testing (#51)
* test.js packs and deploys static targz

* test.js deploys a fixture using the targz

* randomness, RANDOMNESS_PLACEHOLDER to prevent stale data

* test.js tests if randomness is present

* make test-deployment.js shared

* remove package.json.name

* nowDeploy: pass routes from now.json

* make apollo test work

* simplify test logs

* same page content that does not match a test. for inspection

* added cowsay to node-server

* distinguish mustContain values to prevent them intersect

* separate step packAndDeploy

* test for process.env.NODE_ENV replacement

* fetchBuilderUrl to wait for targz is deployed
2018-11-20 21:13:38 +03:00
Igor Klopov
1ea30588a3 Publish
- @now/node-server@0.4.24-canary.6
 - @now/node@0.4.26-canary.6
2018-11-20 19:20:22 +03:00
Igor Klopov
a3b670675a [node] bump zeit/ncc 2018-11-20 19:16:57 +03:00
Tim Neutkens
c4374fe5a8 Publish
- @now/next@0.0.80-canary.0
2018-11-20 00:05:45 +01:00
Tim Neutkens
c3983ba1c2 @now/next Use next build --lambdas to bundle node_modules (#54) 2018-11-19 17:00:47 -06:00
Tim Neutkens
ae1be4b243 @now/next Add maxLambdaSize 2018-11-19 12:15:31 +01:00
Tim Neutkens
b4b1131619 Publish
- @now/next@0.0.79-canary.7
2018-11-19 02:06:09 +01:00
Tim Neutkens
5fd923a7e7 Add stable publish script 2018-11-19 01:57:54 +01:00
Tim Neutkens
f4e95eb59c Publish
- @now/next@0.0.79-canary.7
2018-11-19 01:36:53 +01:00
Tim Neutkens
a6cdaccd34 @now/next add integration test for custom dependencies 2018-11-19 01:35:22 +01:00
Tim Neutkens
4f5fe8eba8 @now/next Fix normalizePackageJson types 2018-11-19 01:06:14 +01:00
Tim Neutkens
7239013989 Don’t run build on tags, only branches 2018-11-19 00:44:15 +01:00
Tim Neutkens
75000ee334 Publish
- @now/next@0.0.79-canary.6
2018-11-19 00:40:04 +01:00
Tim Neutkens
5319610d59 @now/next add normalized package.json logging 2018-11-19 00:39:37 +01:00
Tim Neutkens
6df0d69afa Add passing test for real world package.json 2018-11-19 00:28:48 +01:00
Tim Neutkens
65b191f6b9 Publish
- @now/build-utils@0.4.30-canary.5
 - @now/cgi@0.0.13-canary.5
 - @now/go@0.2.10-canary.5
 - @now/html-minifier@1.0.6-canary.5
 - @now/lambda@0.4.7-canary.5
 - @now/md@0.4.7-canary.5
 - @now/mdx-deck@0.4.16-canary.5
 - @now/next@0.0.79-canary.5
 - @now/node-bridge@0.1.9-canary.5
 - @now/node-server@0.4.24-canary.5
 - @now/node@0.4.26-canary.5
 - @now/optipng@0.4.7-canary.5
 - @now/php@0.4.11-canary.5
 - @now/python@0.0.40-canary.5
 - @now/static-build@0.4.15-canary.5
2018-11-18 17:04:46 +01:00
Tim Neutkens
115f62bbba Set gopath temporarily 2018-11-18 17:02:23 +01:00
Tim Neutkens
cdf6a98a18 Publish
- @now/build-utils@0.4.30-canary.4
 - @now/cgi@0.0.13-canary.4
 - @now/go@0.2.10-canary.4
 - @now/html-minifier@1.0.6-canary.4
 - @now/lambda@0.4.7-canary.4
 - @now/md@0.4.7-canary.4
 - @now/mdx-deck@0.4.16-canary.4
 - @now/next@0.0.79-canary.4
 - @now/node-bridge@0.1.9-canary.4
 - @now/node-server@0.4.24-canary.4
 - @now/node@0.4.26-canary.4
 - @now/optipng@0.4.7-canary.4
 - @now/php@0.4.11-canary.4
 - @now/python@0.0.40-canary.4
 - @now/static-build@0.4.15-canary.4
2018-11-18 16:50:10 +01:00
Tim Neutkens
bb75dfd993 Manually get dependencies 2018-11-18 16:48:57 +01:00
Tim Neutkens
b63062cfc5 Publish
- @now/build-utils@0.4.30-canary.3
 - @now/cgi@0.0.13-canary.3
 - @now/go@0.2.10-canary.3
 - @now/html-minifier@1.0.6-canary.3
 - @now/lambda@0.4.7-canary.3
 - @now/md@0.4.7-canary.3
 - @now/mdx-deck@0.4.16-canary.3
 - @now/next@0.0.79-canary.3
 - @now/node-bridge@0.1.9-canary.3
 - @now/node-server@0.4.24-canary.3
 - @now/node@0.4.26-canary.3
 - @now/optipng@0.4.7-canary.3
 - @now/php@0.4.11-canary.3
 - @now/python@0.0.40-canary.3
 - @now/static-build@0.4.15-canary.3
2018-11-18 16:23:55 +01:00
Tim Neutkens
5ad6dabd96 Use if/else so that build will fail when lerna fails 2018-11-18 16:23:10 +01:00
Tim Neutkens
30060bee07 Publish
- @now/build-utils@0.4.30-canary.2
 - @now/cgi@0.0.13-canary.2
 - @now/go@0.2.10-canary.2
 - @now/html-minifier@1.0.6-canary.2
 - @now/lambda@0.4.7-canary.2
 - @now/md@0.4.7-canary.2
 - @now/mdx-deck@0.4.16-canary.2
 - @now/next@0.0.79-canary.2
 - @now/node-bridge@0.1.9-canary.2
 - @now/node-server@0.4.24-canary.2
 - @now/node@0.4.26-canary.2
 - @now/optipng@0.4.7-canary.2
 - @now/php@0.4.11-canary.2
 - @now/python@0.0.40-canary.2
 - @now/static-build@0.4.15-canary.2
2018-11-18 16:14:10 +01:00
Tim Neutkens
dd48a1c6d3 Fall back to showing did not publish 2018-11-18 16:11:46 +01:00
Tim Neutkens
24d45736f1 If describe fails force null 2018-11-18 16:06:36 +01:00
Tim Neutkens
d839fdbe81 Only run on exact tag matches 2018-11-18 15:59:03 +01:00
Tim Neutkens
cfdcd2f8d0 Make git describe not fail on no tag 2018-11-18 15:53:20 +01:00
Tim Neutkens
b3cac2b372 Manually match tags and publish 2018-11-18 15:46:22 +01:00
Tim Neutkens
9d27d69656 Publish
- @now/build-utils@0.4.30-canary.1
 - @now/cgi@0.0.13-canary.1
 - @now/go@0.2.10-canary.1
 - @now/html-minifier@1.0.6-canary.1
 - @now/lambda@0.4.7-canary.1
 - @now/md@0.4.7-canary.1
 - @now/mdx-deck@0.4.16-canary.1
 - @now/next@0.0.79-canary.1
 - @now/node-bridge@0.1.9-canary.1
 - @now/node-server@0.4.24-canary.1
 - @now/node@0.4.26-canary.1
 - @now/optipng@0.4.7-canary.1
 - @now/php@0.4.11-canary.1
 - @now/python@0.0.40-canary.1
 - @now/static-build@0.4.15-canary.1
2018-11-18 14:55:52 +01:00
Tim Neutkens
04197b250c Run build for tags 2018-11-18 14:52:57 +01:00
Tim Neutkens
ce6f43eae7 Publish
- @now/build-utils@0.4.30-canary.0
 - @now/cgi@0.0.13-canary.0
 - @now/go@0.2.10-canary.0
 - @now/html-minifier@1.0.6-canary.0
 - @now/lambda@0.4.7-canary.0
 - @now/md@0.4.7-canary.0
 - @now/mdx-deck@0.4.16-canary.0
 - @now/next@0.0.79-canary.0
 - @now/node-bridge@0.1.9-canary.0
 - @now/node-server@0.4.24-canary.0
 - @now/node@0.4.26-canary.0
 - @now/optipng@0.4.7-canary.0
 - @now/php@0.4.11-canary.0
 - @now/python@0.0.40-canary.0
 - @now/static-build@0.4.15-canary.0
2018-11-18 14:49:58 +01:00
Tim Neutkens
2cfafe4054 Remove unused comment 2018-11-18 14:49:15 +01:00
Tim Neutkens
b195949881 Bring back canary publish job 2018-11-18 14:47:51 +01:00
Igor Klopov
b7c47fa587 Publish
- @now/build-utils@0.4.29
 - @now/cgi@0.0.12
 - @now/go@0.2.9
 - @now/html-minifier@1.0.5
 - @now/lambda@0.4.6
 - @now/md@0.4.6
 - @now/mdx-deck@0.4.15
 - @now/next@0.0.78
 - @now/node-bridge@0.1.8
 - @now/node-server@0.4.23
 - @now/node@0.4.25
 - @now/optipng@0.4.6
 - @now/php@0.4.10
 - @now/python@0.0.39
 - @now/static-build@0.4.14
2018-11-18 04:44:36 +03:00
Tim Neutkens
f3bcefe822 @now/next exclude package-lock.json / yarn.lock from entry directory (#39)
* @now/next exclude package-lock.json / yarn.lock

* Add typescript to now-next

* Add download and file-fs-ref types

* Add types for now-next

* Remove yarn.lock
2018-11-17 23:10:14 +01:00
Tim Neutkens
7a481c9515 Make PR builds reliable again (#45)
* Run yarn prettier --write --single-quote packages/**/*.js and yarn lint --fix

* Fix tsc error

* Try and make publish-stable only trigger on tag
2018-11-17 22:53:59 +01:00
Igor Klopov
af275c60bf Publish
- @now/node-server@0.4.23-canary.4
 - @now/node@0.4.25-canary.4
2018-11-17 02:37:03 +03:00
Igor Klopov
ded377dfc2 [node] bump ncc 2018-11-17 02:34:51 +03:00
147 changed files with 11032 additions and 350 deletions

View File

@@ -4,6 +4,8 @@ jobs:
docker: docker:
- image: circleci/node:10 - image: circleci/node:10
working_directory: ~/repo working_directory: ~/repo
environment:
GOPATH: $HOME/go
steps: steps:
- checkout - checkout
- run: - run:
@@ -24,63 +26,17 @@ jobs:
- run: - run:
name: Tests name: Tests
command: yarn test command: yarn test
# publish-canary:
# docker:
# - image: circleci/node:10
# working_directory: ~/repo
# steps:
# - checkout
# - run:
# name: Updating apt-get list
# command: sudo apt-get update
# - run:
# name: Installing the latest version of Go
# command: sudo apt-get install golang-go
# - run: yarn install
# - run: yarn bootstrap
# - run:
# name: Saving Authentication Information
# command: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
# - run:
# name: Publishing to Canary Channel
# command: yarn run lerna publish from-git --npm-tag canary --yes
publish-stable:
docker:
- image: circleci/node:10
working_directory: ~/repo
steps:
- checkout
- run: - run:
name: Updating apt-get list name: Potentially save npm token
command: sudo apt-get update command: "([[ ! -z $NPM_TOKEN ]] && echo \"//registry.npmjs.org/:_authToken=$NPM_TOKEN\" >> ~/.npmrc) || echo \"Did not write npm token\""
- run: - run:
name: Installing the latest version of Go name: Potentially publish canary release
command: sudo apt-get install golang-go command: "if ls ~/.npmrc >/dev/null 2>&1 && [[ $(git describe --exact-match 2> /dev/null || :) =~ -canary ]]; then yarn run lerna publish from-git --npm-tag canary --yes; else echo \"Did not publish\"; fi"
- run: yarn install
- run: yarn bootstrap
- run: - run:
name: Saving Authentication Information name: Potentially publish stable release
command: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc command: "if ls ~/.npmrc >/dev/null 2>&1 && [[ ! $(git describe --exact-match 2> /dev/null || :) =~ -canary ]]; then yarn run lerna publish from-git --yes; else echo \"Did not publish\"; fi"
- run:
name: Publishing to Stable Channel
command: yarn run lerna publish from-git --yes
workflows: workflows:
version: 2 version: 2
unscheduled: build-and-deploy:
jobs: jobs:
- build: - build
filters:
tags:
only: /.*/
- publish-stable:
requires:
- build
filters:
tags:
only: /^.*(\d+\.)(\d+\.)(\*|\d+)$/
# - publish-canary:
# requires:
# - build
# filters:
# tags:
# only: /^.*canary.*($|\b)/

View File

@@ -5,6 +5,20 @@
"import/no-unresolved": 0, "import/no-unresolved": 0,
"import/no-dynamic-require": 0, "import/no-dynamic-require": 0,
"global-require": 0 "global-require": 0
} },
"overrides": [
{
"files": ["test/**"],
"rules": {
"import/no-extraneous-dependencies": 0
},
"globals": {
"describe": true,
"it": true,
"test": true,
"expect": true
}
}
]
} }

View File

@@ -19,3 +19,9 @@ For the canary channel use:
``` ```
yarn publish-canary yarn publish-canary
``` ```
CircleCI will take care of publishing the updated packages to npm from there.
If for some reason CircleCI fails to publish the npm package, you may do so
manually by running `npm publish` from the package directory. Make sure to
include the `--tag canary` parameter if you are publishing a canary release!

View File

@@ -1,4 +1,4 @@
module.exports = { module.exports = {
testEnvironment: 'node', testEnvironment: 'node',
rootDir: 'test', collectCoverageFrom: ['packages/**/*.{js,jsx}', '!**/node_modules/**'],
}; };

View File

@@ -26,14 +26,20 @@
] ]
}, },
"devDependencies": { "devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/glob": "^7.1.1",
"@types/multistream": "^2.1.1", "@types/multistream": "^2.1.1",
"@types/node": "^10.12.8", "@types/node": "^10.12.8",
"buffer-replace": "^1.0.0",
"eslint": "^5.9.0", "eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0", "eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0", "eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0", "eslint-plugin-import": "^2.14.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"jest": "^23.6.0", "jest": "^23.6.0",
"lint-staged": "^8.0.4", "lint-staged": "^8.0.4",
"node-fetch": "^2.3.0",
"pre-commit": "^1.2.2", "pre-commit": "^1.2.2",
"prettier": "^1.15.2", "prettier": "^1.15.2",
"typescript": "^3.1.6" "typescript": "^3.1.6"

View File

@@ -0,0 +1 @@
/test

View File

@@ -1,20 +1,38 @@
const assert = require('assert'); const assert = require('assert');
const fs = require('fs-extra'); const fs = require('fs-extra');
const MultiStream = require('multistream'); const multiStream = require('multistream');
const path = require('path'); const path = require('path');
const Sema = require('async-sema'); const Sema = require('async-sema');
/** @typedef {{[filePath: string]: FileFsRef}} FsFiles */
const semaToPreventEMFILE = new Sema(30); const semaToPreventEMFILE = new Sema(30);
/**
* @constructor
* @argument {Object} options
* @argument {number} [options.mode=0o100644]
* @argument {string} options.fsPath
*/
class FileFsRef { class FileFsRef {
constructor({ mode = 0o100644, fsPath }) { constructor({ mode = 0o100644, fsPath }) {
assert(typeof mode === 'number'); assert(typeof mode === 'number');
assert(typeof fsPath === 'string'); assert(typeof fsPath === 'string');
/** @type {string} */
this.type = 'FileFsRef'; this.type = 'FileFsRef';
/** @type {number} */
this.mode = mode; this.mode = mode;
/** @type {string} */
this.fsPath = fsPath; this.fsPath = fsPath;
} }
/**
* @argument {Object} options
* @argument {number} [options.mode=0o100644]
* @argument {NodeJS.ReadableStream} options.stream
* @argument {string} options.fsPath
* @returns {Promise<FileFsRef>}
*/
static async fromStream({ mode = 0o100644, stream, fsPath }) { static async fromStream({ mode = 0o100644, stream, fsPath }) {
assert(typeof mode === 'number'); assert(typeof mode === 'number');
assert(typeof stream.pipe === 'function'); // is-stream assert(typeof stream.pipe === 'function'); // is-stream
@@ -33,6 +51,9 @@ class FileFsRef {
return new FileFsRef({ mode, fsPath }); return new FileFsRef({ mode, fsPath });
} }
/**
* @returns {Promise<NodeJS.ReadableStream>}
*/
async toStreamAsync() { async toStreamAsync() {
await semaToPreventEMFILE.acquire(); await semaToPreventEMFILE.acquire();
const release = () => semaToPreventEMFILE.release(); const release = () => semaToPreventEMFILE.release();
@@ -42,19 +63,24 @@ class FileFsRef {
return stream; return stream;
} }
/**
* @returns {NodeJS.ReadableStream}
*/
toStream() { toStream() {
let flag; let flag;
// eslint-disable-next-line consistent-return // eslint-disable-next-line consistent-return
return new MultiStream((cb) => { return multiStream((cb) => {
if (flag) return cb(); if (flag) return cb(null, null);
flag = true; flag = true;
this.toStreamAsync().then((stream) => { this.toStreamAsync()
cb(undefined, stream); .then((stream) => {
}).catch((error) => { cb(null, stream);
cb(error); })
}); .catch((error) => {
cb(error, null);
});
}); });
} }
} }

View File

@@ -4,6 +4,8 @@ const multiStream = require('multistream');
const retry = require('async-retry'); const retry = require('async-retry');
const Sema = require('async-sema'); const Sema = require('async-sema');
/** @typedef {{[filePath: string]: FileRef}} Files */
const semaToDownloadFromS3 = new Sema(10); const semaToDownloadFromS3 = new Sema(10);
class BailableError extends Error { class BailableError extends Error {

View File

@@ -0,0 +1,83 @@
const MemoryFileSystem = require('memory-fs');
const fs = require('fs');
const path = require('path');
const { spawnSync } = require('child_process');
const yarnPath = spawnSync('which', ['yarn'])
.stdout.toString()
.trim();
const cachePath = spawnSync(yarnPath, ['cache', 'dir'])
.stdout.toString()
.trim();
spawnSync(yarnPath, ['cache', 'clean']);
const vfs = new MemoryFileSystem();
function isOutsideCachePath(filename) {
const relative = path.relative(cachePath, filename);
return relative.startsWith('..');
}
const saveCreateWriteStream = fs.createWriteStream;
fs.createWriteStream = (...args) => {
const filename = args[0];
if (isOutsideCachePath(filename)) {
return saveCreateWriteStream.call(fs, ...args);
}
vfs.mkdirpSync(path.dirname(filename));
fs.writeFileSync(filename, Buffer.alloc(0));
const stream = vfs.createWriteStream(...args);
stream.on('finish', () => {
setTimeout(() => {
stream.emit('close');
});
});
return stream;
};
const saveReadFile = fs.readFile;
fs.readFile = (...args) => {
const filename = args[0];
if (isOutsideCachePath(filename)) {
return saveReadFile.call(fs, ...args);
}
const callback = args[args.length - 1];
return vfs.readFile(...args.slice(0, -1), (error, result) => {
if (error) {
saveReadFile.call(fs, ...args);
return;
}
callback(error, result);
});
};
const saveCopyFile = fs.copyFile;
fs.copyFile = (...args) => {
const src = args[0];
if (isOutsideCachePath(src)) {
return saveCopyFile.call(fs, ...args);
}
const dest = args[1];
const callback = args[args.length - 1];
const buffer = vfs.readFileSync(src);
return fs.writeFile(dest, buffer, callback);
};
const saveWriteFile = fs.writeFile;
fs.writeFile = (...args) => {
const filename = args[0];
if (isOutsideCachePath(filename)) {
return saveWriteFile.call(fs, ...args);
}
return vfs.writeFile(...args);
};
require(yarnPath);

View File

@@ -1,20 +1,38 @@
const path = require('path'); const path = require('path');
const FileFsRef = require('../file-fs-ref.js'); const FileFsRef = require('../file-fs-ref.js');
/** @typedef {import('../file-ref')} FileRef */
/** @typedef {import('../file-fs-ref')} FileFsRef */
/** @typedef {{[filePath: string]: FileRef|FileFsRef}} Files */
/** @typedef {{[filePath: string]: FileFsRef}|{}} DownloadedFiles */
/**
* @param {FileRef|FileFsRef} file
* @param {string} fsPath
* @returns {Promise<FileFsRef>}
*/
async function downloadFile(file, fsPath) { async function downloadFile(file, fsPath) {
const { mode } = file; const { mode } = file;
const stream = file.toStream(); const stream = file.toStream();
return FileFsRef.fromStream({ mode, stream, fsPath }); return FileFsRef.fromStream({ mode, stream, fsPath });
} }
/**
* Download files to disk
* @argument {Files} files
* @argument {string} basePath
* @returns {Promise<DownloadedFiles>}
*/
module.exports = async function download(files, basePath) { module.exports = async function download(files, basePath) {
const files2 = {}; const files2 = {};
await Promise.all(Object.keys(files).map(async (name) => { await Promise.all(
const file = files[name]; Object.keys(files).map(async (name) => {
const fsPath = path.join(basePath, name); const file = files[name];
files2[name] = await downloadFile(file, fsPath); const fsPath = path.join(basePath, name);
})); files2[name] = await downloadFile(file, fsPath);
}),
);
return files2; return files2;
}; };

View File

@@ -3,15 +3,30 @@ const path = require('path');
const vanillaGlob = require('glob'); const vanillaGlob = require('glob');
const FileFsRef = require('../file-fs-ref.js'); const FileFsRef = require('../file-fs-ref.js');
/** @typedef {import('fs').Stats} Stats */
/** @typedef {import('glob').IOptions} GlobOptions */
/** @typedef {import('../file-fs-ref').FsFiles|{}} GlobFiles */
/**
* @argument {string} pattern
* @argument {GlobOptions|string} opts
* @argument {string} [mountpoint]
* @returns {Promise<GlobFiles>}
*/
module.exports = function glob(pattern, opts = {}, mountpoint) { module.exports = function glob(pattern, opts = {}, mountpoint) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
let options = opts; /** @type {GlobOptions} */
if (typeof options === 'string') { let options;
options = { cwd: options }; if (typeof opts === 'string') {
options = { cwd: opts };
} else {
options = opts;
} }
if (!options.cwd) { if (!options.cwd) {
throw new Error('Second argument (basePath) must be specified for names of resulting files'); throw new Error(
'Second argument (basePath) must be specified for names of resulting files',
);
} }
if (!path.isAbsolute(options.cwd)) { if (!path.isAbsolute(options.cwd)) {
@@ -26,21 +41,27 @@ module.exports = function glob(pattern, opts = {}, mountpoint) {
vanillaGlob(pattern, options, (error, files) => { vanillaGlob(pattern, options, (error, files) => {
if (error) return reject(error); if (error) return reject(error);
resolve(files.reduce((files2, relativePath) => { resolve(
const fsPath = path.join(options.cwd, relativePath); files.reduce((files2, relativePath) => {
const stat = options.statCache[fsPath]; const fsPath = path.join(options.cwd, relativePath);
assert(stat, `statCache does not contain value for ${relativePath} (resolved to ${fsPath})`); /** @type {Stats|any} */
if (stat.isFile()) { const stat = options.statCache[fsPath];
let finalPath = relativePath; assert(
if (mountpoint) finalPath = path.join(mountpoint, finalPath); stat,
return { `statCache does not contain value for ${relativePath} (resolved to ${fsPath})`,
...files2, );
[finalPath]: new FileFsRef({ mode: stat.mode, fsPath }), if (stat && stat.isFile()) {
}; let finalPath = relativePath;
} if (mountpoint) finalPath = path.join(mountpoint, finalPath);
return {
...files2,
[finalPath]: new FileFsRef({ mode: stat.mode, fsPath }),
};
}
return files2; return files2;
}, {})); }, {}),
);
}); });
}); });
}; };

View File

@@ -1,6 +1,25 @@
/** @typedef { import('@now/build-utils/file-ref') } FileRef */
/** @typedef { import('@now/build-utils/file-fs-ref') } FileFsRef */
/** @typedef {{[filePath: string]: FileRef|FileFsRef}} Files */
/**
* @callback delegate
* @argument {string} name
* @returns {string}
*/
/**
* Rename files using delegate function
* @argument {Files} files
* @argument {delegate} delegate
* @returns {Files}
*/
module.exports = function rename(files, delegate) { module.exports = function rename(files, delegate) {
return Object.keys(files).reduce((newFiles, name) => ({ return Object.keys(files).reduce(
...newFiles, (newFiles, name) => ({
[delegate(name)]: files[name], ...newFiles,
}), {}); [delegate(name)]: files[name],
}),
{},
);
}; };

View File

@@ -1,3 +1,4 @@
const assert = require('assert');
const fs = require('fs-extra'); const fs = require('fs-extra');
const path = require('path'); const path = require('path');
const { spawn } = require('child_process'); const { spawn } = require('child_process');
@@ -13,22 +14,34 @@ function spawnAsync(command, args, cwd) {
} }
async function runShellScript(fsPath) { async function runShellScript(fsPath) {
assert(path.isAbsolute(fsPath));
const destPath = path.dirname(fsPath); const destPath = path.dirname(fsPath);
await spawnAsync(`./${path.basename(fsPath)}`, [], destPath); await spawnAsync(`./${path.basename(fsPath)}`, [], destPath);
return true; return true;
} }
async function shouldUseNpm(destPath) { async function scanParentDirs(destPath, scriptName) {
assert(path.isAbsolute(destPath));
let hasScript = false;
let hasPackageLockJson = false;
let currentDestPath = destPath; let currentDestPath = destPath;
// eslint-disable-next-line no-constant-condition // eslint-disable-next-line no-constant-condition
while (true) { while (true) {
const packageJsonPath = path.join(currentDestPath, 'package.json');
// eslint-disable-next-line no-await-in-loop // eslint-disable-next-line no-await-in-loop
if (await fs.exists(path.join(currentDestPath, 'package.json'))) { if (await fs.exists(packageJsonPath)) {
// eslint-disable-next-line no-await-in-loop // eslint-disable-next-line no-await-in-loop
if (await fs.exists(path.join(currentDestPath, 'package-lock.json'))) { const packageJson = JSON.parse(await fs.readFile(packageJsonPath));
return true; hasScript = Boolean(
} packageJson.scripts && packageJson.scripts[scriptName],
return false; );
// eslint-disable-next-line no-await-in-loop
hasPackageLockJson = await fs.exists(
path.join(currentDestPath, 'package-lock.json'),
);
break;
} }
const newDestPath = path.dirname(currentDestPath); const newDestPath = path.dirname(currentDestPath);
@@ -36,16 +49,29 @@ async function shouldUseNpm(destPath) {
currentDestPath = newDestPath; currentDestPath = newDestPath;
} }
return false; return { hasScript, hasPackageLockJson };
} }
async function runNpmInstall(destPath, args = []) { async function runNpmInstall(destPath, args = []) {
assert(path.isAbsolute(destPath));
let commandArgs = args; let commandArgs = args;
console.log(`installing to ${destPath}`); console.log(`installing to ${destPath}`);
if (await shouldUseNpm(destPath)) { const { hasPackageLockJson } = await scanParentDirs(destPath);
if (hasPackageLockJson) {
commandArgs = args.filter(a => a !== '--prefer-offline'); commandArgs = args.filter(a => a !== '--prefer-offline');
await spawnAsync('npm', ['install'].concat(commandArgs), destPath); await spawnAsync('npm', ['install'].concat(commandArgs), destPath);
await spawnAsync('npm', ['cache', 'clean', '--force'], destPath); await spawnAsync('npm', ['cache', 'clean', '--force'], destPath);
} else if (process.env.AWS_EXECUTION_ENV) {
console.log('using memory-fs for yarn cache');
await spawnAsync(
'node',
[path.join(__dirname, 'bootstrap-yarn.js'), '--cwd', destPath].concat(
commandArgs,
),
destPath,
);
} else { } else {
await spawnAsync('yarn', ['--cwd', destPath].concat(commandArgs), destPath); await spawnAsync('yarn', ['--cwd', destPath].concat(commandArgs), destPath);
await spawnAsync('yarn', ['cache', 'clean'], destPath); await spawnAsync('yarn', ['cache', 'clean'], destPath);
@@ -53,21 +79,19 @@ async function runNpmInstall(destPath, args = []) {
} }
async function runPackageJsonScript(destPath, scriptName) { async function runPackageJsonScript(destPath, scriptName) {
try { assert(path.isAbsolute(destPath));
if (await shouldUseNpm(destPath)) { const { hasScript, hasPackageLockJson } = await scanParentDirs(
console.log(`running "npm run ${scriptName}"`); destPath,
await spawnAsync('npm', ['run', scriptName], destPath); scriptName,
} else { );
console.log(`running "yarn run ${scriptName}"`); if (!hasScript) return false;
await spawnAsync(
'yarn', if (hasPackageLockJson) {
['--cwd', destPath, 'run', scriptName], console.log(`running "npm run ${scriptName}"`);
destPath, await spawnAsync('npm', ['run', scriptName], destPath);
); } else {
} console.log(`running "yarn run ${scriptName}"`);
} catch (error) { await spawnAsync('yarn', ['--cwd', destPath, 'run', scriptName], destPath);
console.log(error.message);
return false;
} }
return true; return true;

View File

@@ -25,16 +25,21 @@ async function createLambda({
assert(typeof environment === 'object', '"environment" is not an object'); assert(typeof environment === 'object', '"environment" is not an object');
const zipFile = new ZipFile(); const zipFile = new ZipFile();
Object.keys(files).sort().forEach((name) => { Object.keys(files)
const file = files[name]; .sort()
const stream = file.toStream(); .forEach((name) => {
zipFile.addReadStream(stream, name, { mode: file.mode, mtime }); const file = files[name];
}); const stream = file.toStream();
zipFile.addReadStream(stream, name, { mode: file.mode, mtime });
});
zipFile.end(); zipFile.end();
const zipBuffer = await streamToBuffer(zipFile.outputStream); const zipBuffer = await streamToBuffer(zipFile.outputStream);
return new Lambda({ return new Lambda({
zipBuffer, handler, runtime, environment, zipBuffer,
handler,
runtime,
environment,
}); });
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@now/build-utils", "name": "@now/build-utils",
"version": "0.4.29-canary.2", "version": "0.4.31-canary.1",
"dependencies": { "dependencies": {
"async-retry": "1.2.3", "async-retry": "1.2.3",
"async-sema": "2.1.4", "async-sema": "2.1.4",
@@ -8,8 +8,12 @@
"fs-extra": "7.0.0", "fs-extra": "7.0.0",
"glob": "7.1.3", "glob": "7.1.3",
"into-stream": "4.0.0", "into-stream": "4.0.0",
"memory-fs": "0.4.1",
"multistream": "2.1.1", "multistream": "2.1.1",
"node-fetch": "2.2.0", "node-fetch": "2.2.0",
"yazl": "2.4.3" "yazl": "2.4.3"
},
"scripts": {
"test": "jest"
} }
} }

View File

@@ -0,0 +1,11 @@
{
"version": 2,
"builds": [
{ "src": "with-npm/index.js", "use": "@now/node" },
{ "src": "with-yarn/index.js", "use": "@now/node" }
],
"probes": [
{ "path": "/with-npm", "mustContain": "npm:RANDOMNESS_PLACEHOLDER" },
{ "path": "/with-yarn", "mustContain": "yarn:RANDOMNESS_PLACEHOLDER" }
]
}

View File

@@ -0,0 +1,14 @@
const fs = require('fs');
const path = require('path');
const execpath = path.basename(process.env.npm_execpath);
console.log('execpath', execpath);
if (execpath === 'npm-cli.js') {
fs.writeFileSync(
'index.js',
'module.exports = (_, resp) => resp.end("npm:RANDOMNESS_PLACEHOLDER");',
);
} else {
throw new Error('npm is expected');
}

View File

@@ -0,0 +1,3 @@
{
"lockfileVersion": 1
}

View File

@@ -0,0 +1,5 @@
{
"scripts": {
"now-build": "node must-be-npm.js"
}
}

View File

@@ -0,0 +1,14 @@
const fs = require('fs');
const path = require('path');
const execpath = path.basename(process.env.npm_execpath);
console.log('execpath', execpath);
if (execpath === 'yarn.js' || execpath === 'yarn') {
fs.writeFileSync(
'index.js',
'module.exports = (_, resp) => resp.end("yarn:RANDOMNESS_PLACEHOLDER");',
);
} else {
throw new Error('yarn is expected');
}

View File

@@ -0,0 +1,5 @@
{
"scripts": {
"now-build": "node must-be-yarn.js"
}
}

View File

@@ -0,0 +1,56 @@
/* global beforeAll, expect, it, jest */
const fs = require('fs');
const path = require('path');
const {
packAndDeploy,
testDeployment,
} = require('../../../test/lib/deployment/test-deployment.js');
jest.setTimeout(2 * 60 * 1000);
let buildUtilsUrl;
beforeAll(async () => {
const buildUtilsPath = path.resolve(__dirname, '..');
buildUtilsUrl = await packAndDeploy(buildUtilsPath);
console.log('buildUtilsUrl', buildUtilsUrl);
});
// own fixtures
const fixturesPath = path.resolve(__dirname, 'fixtures');
// eslint-disable-next-line no-restricted-syntax
for (const fixture of fs.readdirSync(fixturesPath)) {
// eslint-disable-next-line no-loop-func
it(`should build ${fixture}`, async () => {
await expect(
testDeployment({ buildUtilsUrl }, path.join(fixturesPath, fixture)),
).resolves.toBeDefined();
});
}
// few foreign tests
const buildersToTestWith = ['now-node-server', 'now-static-build'];
// eslint-disable-next-line no-restricted-syntax
for (const builder of buildersToTestWith) {
const fixturesPath2 = path.resolve(
__dirname,
`../../${builder}/test/fixtures`,
);
// eslint-disable-next-line no-restricted-syntax
for (const fixture of fs.readdirSync(fixturesPath2)) {
// don't run all foreign fixtures, just some
if (['01-cowsay', '03-env-vars'].includes(fixture)) {
// eslint-disable-next-line no-loop-func
it(`should build ${builder}/${fixture}`, async () => {
await expect(
testDeployment({ buildUtilsUrl }, path.join(fixturesPath2, fixture)),
).resolves.toBeDefined();
});
}
}
}

View File

@@ -1,4 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
export GOOS=linux export GOOS=linux
export GOARCH=amd64 export GOARCH=amd64
export GOPATH=$HOME/go
go get github.com/aws/aws-lambda-go/events
go get github.com/aws/aws-lambda-go/lambda
go build -o handler main.go go build -o handler main.go

View File

@@ -70,7 +70,7 @@ func (h *CgiHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
Path: h.Script, Path: h.Script,
Root: "/" + h.Script, Root: "/" + h.Script,
Dir: h.Dir, Dir: h.Dir,
Env: []string{"SERVER_PORT=443"}, Env: []string{"SERVER_PORT=443", "HTTPS=on", "SERVER_SOFTWARE=@now/cgi"},
} }
cgih.ServeHTTP(w, r) cgih.ServeHTTP(w, r)
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@now/cgi", "name": "@now/cgi",
"version": "0.0.12-canary.1", "version": "0.0.13",
"scripts": { "scripts": {
"test": "best -I test/*.js", "test": "best -I test/*.js",
"prepublish": "./build.sh" "prepublish": "./build.sh"

View File

@@ -91,7 +91,10 @@ func main() {
for k, v := range req.Headers { for k, v := range req.Headers {
internalReq.Header.Add(k, v) internalReq.Header.Add(k, v)
if strings.ToLower(k) == "host" { if strings.ToLower(k) == "host" {
req.Host = v // we need to set `Host` in the request
// because Go likes to ignore the `Host` header
// see https://github.com/golang/go/issues/7682
internalReq.Host = v
} }
} }
@@ -108,12 +111,7 @@ func main() {
for k, v := range internalRes.Header { for k, v := range internalRes.Header {
// FIXME: support multiple values via concatenating with ',' // FIXME: support multiple values via concatenating with ','
// see RFC 7230, section 3.2.2 // see RFC 7230, section 3.2.2
if strings.ToLower(k) == "x-now-response-encoding" { resHeaders[k] = v[0]
// we don't want to send this header down
resEncoding = v[0]
} else {
resHeaders[k] = v[0]
}
} }
bodyBytes, err := ioutil.ReadAll(internalRes.Body) bodyBytes, err := ioutil.ReadAll(internalRes.Body)
@@ -121,17 +119,12 @@ func main() {
return createErrorResponse("Bad gateway", "bad_gateway", 502) return createErrorResponse("Bad gateway", "bad_gateway", 502)
} }
var resBody string resBody = b64.StdEncoding.EncodeToString(bodyBytes)
if resEncoding == "base64" {
resBody = b64.StdEncoding.EncodeToString(bodyBytes)
} else {
resBody = string(bodyBytes)
}
return Response{ return Response{
StatusCode: internalRes.StatusCode, StatusCode: internalRes.StatusCode,
Headers: resHeaders, Headers: resHeaders,
Encoding: resEncoding, Encoding: "base64",
Body: resBody, Body: resBody,
}, nil }, nil
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@now/go", "name": "@now/go",
"version": "0.2.9-canary.1", "version": "0.2.11-canary.0",
"scripts": { "scripts": {
"test": "best -I test/*.js", "test": "best -I test/*.js",
"prepublish": "./build.sh" "prepublish": "./build.sh"

View File

@@ -1,6 +1,6 @@
{ {
"name": "@now/html-minifier", "name": "@now/html-minifier",
"version": "1.0.5-canary.0", "version": "1.0.6",
"dependencies": { "dependencies": {
"html-minifier": "3.5.21" "html-minifier": "3.5.21"
}, },

View File

@@ -0,0 +1 @@
/test

View File

@@ -1,7 +1,10 @@
{ {
"name": "@now/lambda", "name": "@now/lambda",
"version": "0.4.6-canary.0", "version": "0.4.8-canary.0",
"peerDependencies": { "peerDependencies": {
"@now/build-utils": ">=0.0.1" "@now/build-utils": ">=0.0.1"
},
"scripts": {
"test": "jest"
} }
} }

Binary file not shown.

View File

@@ -0,0 +1,11 @@
{
"version": 2,
"builds": [
{ "src": "index.zip", "use": "@now/lambda", "config": { "handler": "index.handler", "runtime": "nodejs8.10" } },
{ "src": "subdirectory/index.zip", "use": "@now/lambda", "config": { "handler": "index.handler", "runtime": "nodejs8.10" } }
],
"probes": [
{ "path": "/", "mustContain": "cow:NO_REPLACE_TO_AVOID_CRC_MISMATCH" },
{ "path": "/subdirectory/", "mustContain": "yoda:NO_REPLACE_TO_AVOID_CRC_MISMATCH" }
]
}

Binary file not shown.

View File

@@ -0,0 +1,29 @@
/* global beforeAll, expect, it, jest */
const fs = require('fs');
const path = require('path');
const {
packAndDeploy,
testDeployment,
} = require('../../../test/lib/deployment/test-deployment.js');
jest.setTimeout(2 * 60 * 1000);
let builderUrl;
beforeAll(async () => {
const builderPath = path.resolve(__dirname, '..');
builderUrl = await packAndDeploy(builderPath);
console.log('builderUrl', builderUrl);
});
const fixturesPath = path.resolve(__dirname, 'fixtures');
// eslint-disable-next-line no-restricted-syntax
for (const fixture of fs.readdirSync(fixturesPath)) {
// eslint-disable-next-line no-loop-func
it(`should build ${fixture}`, async () => {
await expect(
testDeployment({ builderUrl }, path.join(fixturesPath, fixture)),
).resolves.toBeDefined();
});
}

View File

@@ -0,0 +1 @@
/test

View File

@@ -22,12 +22,17 @@ exports.build = async ({ files, entrypoint, config }) => {
.use(markdown) .use(markdown)
.use(remark2rehype) .use(remark2rehype)
.use(doc, { .use(doc, {
title, language, meta, css, title,
language,
meta,
css,
}) })
.use(format) .use(format)
.use(html); .use(html);
const result = await FileBlob.fromStream({ stream: stream.pipe(unifiedStream(processor)) }); const result = await FileBlob.fromStream({
stream: stream.pipe(unifiedStream(processor)),
});
console.log(result.data.toString()); console.log(result.data.toString());

View File

@@ -1,6 +1,6 @@
{ {
"name": "@now/md", "name": "@now/md",
"version": "0.4.6-canary.0", "version": "0.4.8-canary.1",
"dependencies": { "dependencies": {
"rehype-document": "^2.2.0", "rehype-document": "^2.2.0",
"rehype-format": "^2.3.0", "rehype-format": "^2.3.0",
@@ -12,5 +12,8 @@
}, },
"peerDependencies": { "peerDependencies": {
"@now/build-utils": ">=0.0.1" "@now/build-utils": ">=0.0.1"
},
"scripts": {
"test": "jest"
} }
} }

View File

@@ -0,0 +1,5 @@
# Testing Markdown
cow:RANDOMNESS_PLACEHOLDER
[Wow a link!](https://zeit.co)

View File

@@ -0,0 +1,11 @@
{
"version": 2,
"builds": [
{ "src": "index.md", "use": "@now/md" },
{ "src": "subdirectory/index.md", "use": "@now/md" }
],
"probes": [
{ "path": "/", "mustContain": "cow:RANDOMNESS_PLACEHOLDER" },
{ "path": "/subdirectory/", "mustContain": "yoda:RANDOMNESS_PLACEHOLDER" }
]
}

View File

@@ -0,0 +1,5 @@
# Testing Markdown
yoda:RANDOMNESS_PLACEHOLDER
[Wow a link!](https://zeit.co)

View File

@@ -0,0 +1,29 @@
/* global beforeAll, expect, it, jest */
const fs = require('fs');
const path = require('path');
const {
packAndDeploy,
testDeployment,
} = require('../../../test/lib/deployment/test-deployment.js');
jest.setTimeout(2 * 60 * 1000);
let builderUrl;
beforeAll(async () => {
const builderPath = path.resolve(__dirname, '..');
builderUrl = await packAndDeploy(builderPath);
console.log('builderUrl', builderUrl);
});
const fixturesPath = path.resolve(__dirname, 'fixtures');
// eslint-disable-next-line no-restricted-syntax
for (const fixture of fs.readdirSync(fixturesPath)) {
// eslint-disable-next-line no-loop-func
it(`should build ${fixture}`, async () => {
await expect(
testDeployment({ builderUrl }, path.join(fixturesPath, fixture)),
).resolves.toBeDefined();
});
}

View File

@@ -0,0 +1 @@
/test

View File

@@ -14,18 +14,24 @@ exports.build = async ({ files, entrypoint, workPath }) => {
console.log('downloading user files...'); console.log('downloading user files...');
const downloadedFiles = await download(files, workPath); const downloadedFiles = await download(files, workPath);
console.log('writing package.json...'); console.log('writing package.json...');
const packageJson = { dependencies: { 'mdx-deck': '1.7.7' } }; const packageJson = { dependencies: { 'mdx-deck': '1.7.15' } };
const packageJsonPath = path.join(workPath, 'package.json'); const packageJsonPath = path.join(workPath, 'package.json');
await writeFile(packageJsonPath, JSON.stringify(packageJson)); await writeFile(packageJsonPath, JSON.stringify(packageJson));
console.log('running npm install...'); console.log('running npm install...');
process.env.PUPPETEER_SKIP_CHROMIUM_DOWNLOAD = '1'; // TODO opts argument for runNpmInstall process.env.PUPPETEER_SKIP_CHROMIUM_DOWNLOAD = '1'; // TODO opts argument for runNpmInstall
await runNpmInstall(path.dirname(packageJsonPath), ['--prod', '--prefer-offline']); await runNpmInstall(path.dirname(packageJsonPath), [
'--prod',
'--prefer-offline',
]);
console.log('building...'); console.log('building...');
const outDir = await getWritableDirectory(); const outDir = await getWritableDirectory();
const entrypointFsPath = downloadedFiles[entrypoint].fsPath; const entrypointFsPath = downloadedFiles[entrypoint].fsPath;
const mountpoint = path.dirname(entrypoint); const mountpoint = path.dirname(entrypoint);
const build = require(path.join(workPath, 'node_modules/mdx-deck/lib/build.js')); const build = require(path.join(
workPath,
'node_modules/mdx-deck/lib/build.js',
));
await build({ await build({
html: true, html: true,
@@ -41,15 +47,15 @@ exports.build = async ({ files, entrypoint, workPath }) => {
exports.prepareCache = async ({ cachePath }) => { exports.prepareCache = async ({ cachePath }) => {
console.log('writing package.json...'); console.log('writing package.json...');
const packageJson = { dependencies: { 'mdx-deck': '1.7.7' } }; const packageJson = { dependencies: { 'mdx-deck': '1.7.15' } };
const packageJsonPath = path.join(cachePath, 'package.json'); const packageJsonPath = path.join(cachePath, 'package.json');
await writeFile(packageJsonPath, JSON.stringify(packageJson)); await writeFile(packageJsonPath, JSON.stringify(packageJson));
console.log('running npm install...'); console.log('running npm install...');
await runNpmInstall(path.dirname(packageJsonPath), ['--prod']); await runNpmInstall(path.dirname(packageJsonPath), ['--prod']);
return { return {
...await glob('node_modules/**', cachePath), ...(await glob('node_modules/**', cachePath)),
...await glob('package-lock.json', cachePath), ...(await glob('package-lock.json', cachePath)),
...await glob('yarn.lock', cachePath), ...(await glob('yarn.lock', cachePath)),
}; };
}; };

View File

@@ -1,7 +1,10 @@
{ {
"name": "@now/mdx-deck", "name": "@now/mdx-deck",
"version": "0.4.15-canary.0", "version": "0.4.17-canary.2",
"peerDependencies": { "peerDependencies": {
"@now/build-utils": ">=0.0.1" "@now/build-utils": ">=0.0.1"
},
"scripts": {
"test": "jest"
} }
} }

View File

@@ -0,0 +1,5 @@
# Testing Markdown
---
cow:RANDOMNESS_PLACEHOLDER
---
[Wow a link!](https://zeit.co)

View File

@@ -0,0 +1,11 @@
{
"version": 2,
"builds": [
{ "src": "index.mdx", "use": "@now/mdx-deck" },
{ "src": "subdirectory/index.mdx", "use": "@now/mdx-deck" }
],
"probes": [
{ "path": "/", "mustContain": "cow:RANDOMNESS_PLACEHOLDER" },
{ "path": "/subdirectory/", "mustContain": "yoda:RANDOMNESS_PLACEHOLDER" }
]
}

View File

@@ -0,0 +1,5 @@
# Testing Markdown
---
yoda:RANDOMNESS_PLACEHOLDER
---
[Wow a link!](https://zeit.co)

View File

@@ -0,0 +1,29 @@
/* global beforeAll, expect, it, jest */
const fs = require('fs');
const path = require('path');
const {
packAndDeploy,
testDeployment,
} = require('../../../test/lib/deployment/test-deployment.js');
jest.setTimeout(2 * 60 * 1000);
let builderUrl;
beforeAll(async () => {
const builderPath = path.resolve(__dirname, '..');
builderUrl = await packAndDeploy(builderPath);
console.log('builderUrl', builderUrl);
});
const fixturesPath = path.resolve(__dirname, 'fixtures');
// eslint-disable-next-line no-restricted-syntax
for (const fixture of fs.readdirSync(fixturesPath)) {
// eslint-disable-next-line no-loop-func
it(`should build ${fixture}`, async () => {
await expect(
testDeployment({ builderUrl }, path.join(fixturesPath, fixture)),
).resolves.toBeDefined();
});
}

View File

@@ -4,129 +4,107 @@ const FileFsRef = require('@now/build-utils/file-fs-ref.js');
const FileBlob = require('@now/build-utils/file-blob'); const FileBlob = require('@now/build-utils/file-blob');
const path = require('path'); const path = require('path');
const { readFile, writeFile, unlink } = require('fs.promised'); const { readFile, writeFile, unlink } = require('fs.promised');
const rename = require('@now/build-utils/fs/rename.js');
const { const {
runNpmInstall, runNpmInstall,
runPackageJsonScript, runPackageJsonScript,
} = require('@now/build-utils/fs/run-user-scripts.js'); } = require('@now/build-utils/fs/run-user-scripts.js');
const glob = require('@now/build-utils/fs/glob.js'); const glob = require('@now/build-utils/fs/glob.js');
const {
excludeFiles,
validateEntrypoint,
includeOnlyEntryDirectory,
moveEntryDirectoryToRoot,
excludeLockFiles,
normalizePackageJson,
excludeStaticDirectory,
onlyStaticDirectory,
} = require('./utils');
// Exclude certain files from the files object /** @typedef { import('@now/build-utils/file-ref').Files } Files */
function excludeFiles(files, matchFn) { /** @typedef { import('@now/build-utils/fs/download').DownloadedFiles } DownloadedFiles */
return Object.keys(files).reduce((newFiles, fileName) => {
if (matchFn(fileName)) { /**
return newFiles; * @typedef {Object} BuildParamsType
} * @property {Files} files - Files object
return { * @property {string} entrypoint - Entrypoint specified for the builder
...newFiles, * @property {string} workPath - Working directory for this build
[fileName]: files[fileName], */
};
}, {}); /**
* Read package.json from files
* @param {DownloadedFiles} files
*/
async function readPackageJson(files) {
if (!files['package.json']) {
return {};
}
const packageJsonPath = files['package.json'].fsPath;
return JSON.parse(await readFile(packageJsonPath, 'utf8'));
} }
function shouldExcludeFile(entryDirectory) { /**
return (file) => { * Write package.json
// If the file is not in the entry directory * @param {string} workPath
if (entryDirectory !== '.' && !file.startsWith(entryDirectory)) { * @param {Object} packageJson
return true; */
} async function writePackageJson(workPath, packageJson) {
// Exclude static directory
if (file.startsWith(path.join(entryDirectory, 'static'))) {
return true;
}
if (file === 'package-lock.json') {
return true;
}
if (file === 'yarn.lock') {
return true;
}
return false;
};
}
exports.build = async ({ files, workPath, entrypoint }) => {
if (
!/package\.json$/.exec(entrypoint)
&& !/next\.config\.js$/.exec(entrypoint)
) {
throw new Error(
'Specified "src" for "@now/next" has to be "package.json" or "next.config.js"',
);
}
console.log('downloading user files...');
const entryDirectory = path.dirname(entrypoint);
const filesToDownload = excludeFiles(
files,
shouldExcludeFile(entryDirectory),
);
const entrypointHandledFilesToDownload = rename(filesToDownload, (file) => {
if (entryDirectory !== '.') {
return file.replace(new RegExp(`^${entryDirectory}/`), '');
}
return file;
});
let downloadedFiles = await download(
entrypointHandledFilesToDownload,
workPath,
);
let packageJson = {};
if (downloadedFiles['package.json']) {
console.log('found package.json, overwriting');
const packageJsonPath = downloadedFiles['package.json'].fsPath;
packageJson = JSON.parse(await readFile(packageJsonPath, 'utf8'));
}
packageJson = {
...packageJson,
dependencies: {
...packageJson.dependencies,
'next-server': 'canary',
},
devDependencies: {
...packageJson.devDependencies,
next: 'canary',
},
scripts: {
...packageJson.scripts,
'now-build': 'next build',
},
};
if (!packageJson.dependencies.react) {
console.log(
'"react" not found in dependencies, adding to "package.json" "dependencies"',
);
packageJson.dependencies.react = 'latest';
}
if (!packageJson.dependencies['react-dom']) {
console.log(
'"react-dom" not found in dependencies, adding to "package.json" "dependencies"',
);
packageJson.dependencies['react-dom'] = 'latest';
}
// in case the user has `next` on their `dependencies`, we remove it
delete packageJson.dependencies.next;
await writeFile( await writeFile(
path.join(workPath, 'package.json'), path.join(workPath, 'package.json'),
JSON.stringify(packageJson, null, 2), JSON.stringify(packageJson, null, 2),
); );
}
/**
* Write .npmrc with npm auth token
* @param {string} workPath
* @param {string} token
*/
async function writeNpmRc(workPath, token) {
await writeFile(
path.join(workPath, '.npmrc'),
`//registry.npmjs.org/:_authToken=${token}`,
);
}
exports.config = {
maxLambdaSize: '5mb',
};
/**
* @param {BuildParamsType} buildParams
* @returns {Promise<Files>}
*/
exports.build = async ({ files, workPath, entrypoint }) => {
validateEntrypoint(entrypoint);
console.log('downloading user files...');
const entryDirectory = path.dirname(entrypoint);
const filesOnlyEntryDirectory = includeOnlyEntryDirectory(
files,
entryDirectory,
);
const filesWithEntryDirectoryRoot = moveEntryDirectoryToRoot(
filesOnlyEntryDirectory,
entryDirectory,
);
const filesWithoutLockfiles = excludeLockFiles(filesWithEntryDirectoryRoot);
const filesWithoutStaticDirectory = excludeStaticDirectory(
filesWithoutLockfiles,
);
const downloadedFiles = await download(filesWithoutStaticDirectory, workPath);
console.log('normalizing package.json');
const packageJson = normalizePackageJson(
await readPackageJson(downloadedFiles),
);
console.log('normalized package.json result: ', packageJson);
await writePackageJson(workPath, packageJson);
if (process.env.NPM_AUTH_TOKEN) { if (process.env.NPM_AUTH_TOKEN) {
console.log('found NPM_AUTH_TOKEN in environment, creating .npmrc'); console.log('found NPM_AUTH_TOKEN in environment, creating .npmrc');
await writeFile( await writeNpmRc(workPath, process.env.NPM_AUTH_TOKEN);
path.join(workPath, '.npmrc'),
`//registry.npmjs.org/:_authToken=${process.env.NPM_AUTH_TOKEN}`,
);
} }
downloadedFiles = await glob('**', workPath);
console.log('running npm install...'); console.log('running npm install...');
await runNpmInstall(workPath, ['--prefer-offline']); await runNpmInstall(workPath, ['--prefer-offline']);
@@ -137,7 +115,8 @@ exports.build = async ({ files, workPath, entrypoint }) => {
if (process.env.NPM_AUTH_TOKEN) { if (process.env.NPM_AUTH_TOKEN) {
await unlink(path.join(workPath, '.npmrc')); await unlink(path.join(workPath, '.npmrc'));
} }
downloadedFiles = await glob('**', workPath);
const filesAfterBuild = await glob('**', workPath);
console.log('preparing lambda files...'); console.log('preparing lambda files...');
let buildId; let buildId;
@@ -164,8 +143,8 @@ exports.build = async ({ files, workPath, entrypoint }) => {
...dotNextServerRootFiles, ...dotNextServerRootFiles,
...launcherFiles, ...launcherFiles,
}; };
if (downloadedFiles['next.config.js']) { if (filesAfterBuild['next.config.js']) {
nextFiles['next.config.js'] = downloadedFiles['next.config.js']; nextFiles['next.config.js'] = filesAfterBuild['next.config.js'];
} }
const pages = await glob( const pages = await glob(
'**/*.js', '**/*.js',
@@ -189,20 +168,21 @@ exports.build = async ({ files, workPath, entrypoint }) => {
); );
const pageFiles = { const pageFiles = {
[`.next/server/static/${buildId}/pages/_document.js`]: downloadedFiles[ [`.next/server/static/${buildId}/pages/_document.js`]: filesAfterBuild[
`.next/server/static/${buildId}/pages/_document.js` `.next/server/static/${buildId}/pages/_document.js`
], ],
[`.next/server/static/${buildId}/pages/_app.js`]: downloadedFiles[ [`.next/server/static/${buildId}/pages/_app.js`]: filesAfterBuild[
`.next/server/static/${buildId}/pages/_app.js` `.next/server/static/${buildId}/pages/_app.js`
], ],
[`.next/server/static/${buildId}/pages/_error.js`]: downloadedFiles[ [`.next/server/static/${buildId}/pages/_error.js`]: filesAfterBuild[
`.next/server/static/${buildId}/pages/_error.js` `.next/server/static/${buildId}/pages/_error.js`
], ],
[`.next/server/static/${buildId}/pages/${page}`]: downloadedFiles[ [`.next/server/static/${buildId}/pages/${page}`]: filesAfterBuild[
`.next/server/static/${buildId}/pages/${page}` `.next/server/static/${buildId}/pages/${page}`
], ],
}; };
console.log(`Creating lambda for page: "${page}"...`);
lambdas[path.join(entryDirectory, pathname)] = await createLambda({ lambdas[path.join(entryDirectory, pathname)] = await createLambda({
files: { files: {
...nextFiles, ...nextFiles,
@@ -212,6 +192,7 @@ exports.build = async ({ files, workPath, entrypoint }) => {
handler: 'now__launcher.launcher', handler: 'now__launcher.launcher',
runtime: 'nodejs8.10', runtime: 'nodejs8.10',
}); });
console.log(`Created lambda for page: "${page}"`);
}), }),
); );
@@ -227,12 +208,36 @@ exports.build = async ({ files, workPath, entrypoint }) => {
{}, {},
); );
return { ...lambdas, ...staticFiles }; const nextStaticDirectory = onlyStaticDirectory(filesWithoutLockfiles);
const staticDirectoryFiles = Object.keys(nextStaticDirectory).reduce(
(mappedFiles, file) => ({
...mappedFiles,
[path.join(entryDirectory, file)]: nextStaticDirectory[file],
}),
{},
);
return { ...lambdas, ...staticFiles, ...staticDirectoryFiles };
}; };
exports.prepareCache = async ({ files, cachePath, workPath }) => { exports.prepareCache = async ({
files, entrypoint, cachePath, workPath,
}) => {
console.log('downloading user files...'); console.log('downloading user files...');
await download(files, cachePath); const entryDirectory = path.dirname(entrypoint);
const filesOnlyEntryDirectory = includeOnlyEntryDirectory(
files,
entryDirectory,
);
const filesWithEntryDirectoryRoot = moveEntryDirectoryToRoot(
filesOnlyEntryDirectory,
entryDirectory,
);
const filesWithoutLockfiles = excludeLockFiles(filesWithEntryDirectoryRoot);
const filesWithoutStaticDirectory = excludeStaticDirectory(
filesWithoutLockfiles,
);
await download(filesWithoutStaticDirectory, workPath);
await download(await glob('.next/**', workPath), cachePath); await download(await glob('.next/**', workPath), cachePath);
await download(await glob('node_modules/**', workPath), cachePath); await download(await glob('node_modules/**', workPath), cachePath);

View File

@@ -1,6 +1,6 @@
{ {
"name": "@now/next", "name": "@now/next",
"version": "0.0.78-canary.1", "version": "0.0.81-canary.1",
"dependencies": { "dependencies": {
"@now/node-bridge": "0.1.4", "@now/node-bridge": "0.1.4",
"execa": "^1.0.0", "execa": "^1.0.0",

181
packages/now-next/utils.js Normal file
View File

@@ -0,0 +1,181 @@
const rename = require('@now/build-utils/fs/rename.js');
/** @typedef { import('@now/build-utils/file-ref') } FileRef */
/** @typedef { import('@now/build-utils/file-fs-ref') } FileFsRef */
/** @typedef {{[filePath: string]: FileRef|FileFsRef}} Files */
/**
* Validate if the entrypoint is allowed to be used
* @param {string} entrypoint
* @throws {Error}
*/
function validateEntrypoint(entrypoint) {
if (
!/package\.json$/.exec(entrypoint)
&& !/next\.config\.js$/.exec(entrypoint)
) {
throw new Error(
'Specified "src" for "@now/next" has to be "package.json" or "next.config.js"',
);
}
}
/**
* This callback type is called `requestCallback` and is displayed as a global symbol.
*
* @callback matcher
* @param {string} filePath
* @returns {boolean}
*/
/**
* Exclude certain files from the files object
* @param {Files} files
* @param {matcher} matcher
* @returns {Files}
*/
function excludeFiles(files, matcher) {
return Object.keys(files).reduce((newFiles, filePath) => {
if (matcher(filePath)) {
return newFiles;
}
return {
...newFiles,
[filePath]: files[filePath],
};
}, {});
}
/**
* Creates a new Files object holding only the entrypoint files
* @param {Files} files
* @param {string} entryDirectory
* @returns {Files}
*/
function includeOnlyEntryDirectory(files, entryDirectory) {
if (entryDirectory === '.') {
return files;
}
function matcher(filePath) {
return !filePath.startsWith(entryDirectory);
}
return excludeFiles(files, matcher);
}
/**
* Moves all files under the entry directory to the root directory
* @param {Files} files
* @param {string} entryDirectory
* @returns {Files}
*/
function moveEntryDirectoryToRoot(files, entryDirectory) {
if (entryDirectory === '.') {
return files;
}
function delegate(filePath) {
return filePath.replace(new RegExp(`^${entryDirectory}/`), '');
}
return rename(files, delegate);
}
/**
* Exclude package manager lockfiles from files
* @param {Files} files
* @returns {Files}
*/
function excludeLockFiles(files) {
const newFiles = files;
if (newFiles['package-lock.json']) {
delete newFiles['package-lock.json'];
}
if (newFiles['yarn.lock']) {
delete newFiles['yarn.lock'];
}
return files;
}
/**
* Exclude the static directory from files
* @param {Files} files
* @returns {Files}
*/
function excludeStaticDirectory(files) {
function matcher(filePath) {
return filePath.startsWith('static');
}
return excludeFiles(files, matcher);
}
/**
* Exclude the static directory from files
* @param {Files} files
* @returns {Files}
*/
function onlyStaticDirectory(files) {
function matcher(filePath) {
return !filePath.startsWith('static');
}
return excludeFiles(files, matcher);
}
/**
* Enforce specific package.json configuration for smallest possible lambda
* @param {{dependencies?: any, devDependencies?: any, scripts?: any}} defaultPackageJson
*/
function normalizePackageJson(defaultPackageJson = {}) {
const dependencies = {};
const devDependencies = {
...defaultPackageJson.dependencies,
...defaultPackageJson.devDependencies,
};
if (devDependencies.react) {
dependencies.react = devDependencies.react;
delete devDependencies.react;
}
if (devDependencies['react-dom']) {
dependencies['react-dom'] = devDependencies['react-dom'];
delete devDependencies['react-dom'];
}
return {
...defaultPackageJson,
dependencies: {
// react and react-dom can be overwritten
react: 'latest',
'react-dom': 'latest',
...dependencies, // override react if user provided it
// next-server is forced to canary
'next-server': 'canary',
},
devDependencies: {
...devDependencies,
// next is forced to canary
next: 'canary',
// next-server is a dependency here
'next-server': undefined,
},
scripts: {
...defaultPackageJson.scripts,
'now-build': 'next build --lambdas',
},
};
}
module.exports = {
excludeFiles,
validateEntrypoint,
includeOnlyEntryDirectory,
moveEntryDirectoryToRoot,
excludeLockFiles,
normalizePackageJson,
excludeStaticDirectory,
onlyStaticDirectory,
};

View File

@@ -1,6 +1,6 @@
{ {
"name": "@now/node-bridge", "name": "@now/node-bridge",
"version": "0.1.8-canary.1", "version": "0.1.9",
"peerDependencies": { "peerDependencies": {
"@now/build-utils": ">=0.0.1" "@now/build-utils": ">=0.0.1"
} }

View File

@@ -0,0 +1 @@
/test

View File

@@ -5,31 +5,41 @@ const FileFsRef = require('@now/build-utils/file-fs-ref.js');
const fs = require('fs-extra'); const fs = require('fs-extra');
const glob = require('@now/build-utils/fs/glob.js'); const glob = require('@now/build-utils/fs/glob.js');
const path = require('path'); const path = require('path');
const { promisify } = require('util'); const rename = require('@now/build-utils/fs/rename.js');
const { const {
runNpmInstall, runNpmInstall,
runPackageJsonScript, runPackageJsonScript,
} = require('@now/build-utils/fs/run-user-scripts.js'); } = require('@now/build-utils/fs/run-user-scripts.js');
const fsp = { /** @typedef { import('@now/build-utils/file-ref') } FileRef */
readFile: promisify(fs.readFile), /** @typedef {{[filePath: string]: FileRef}} Files */
};
async function commonForTwo({ /**
files, entrypoint, workPath, cachePath, * @typedef {Object} BuildParamsType
}) { * @property {Files} files - Files object
const xPath = workPath || cachePath; * @property {string} entrypoint - Entrypoint specified for the builder
const preferOfflineArgument = workPath ? ['--prefer-offline'] : []; * @property {Object} config - User-passed config from now.json
* @property {string} workPath - Working directory for this build
*/
const xUserPath = path.join(xPath, 'user'); /**
const xNccPath = path.join(xPath, 'ncc'); * @param {BuildParamsType} buildParams
* @param {Object} [options]
* @param {string[]} [options.npmArguments]
*/
async function downloadInstallAndBundle(
{ files, entrypoint, workPath },
{ npmArguments = [] } = {},
) {
const userPath = path.join(workPath, 'user');
const nccPath = path.join(workPath, 'ncc');
console.log('downloading user files...'); console.log('downloading user files...');
const filesOnDisk = await download(files, xUserPath); const downloadedFiles = await download(files, userPath);
console.log('running npm install for user...'); console.log('running npm install for user...');
const entrypointFsDirname = path.join(xUserPath, path.dirname(entrypoint)); const entrypointFsDirname = path.join(userPath, path.dirname(entrypoint));
await runNpmInstall(entrypointFsDirname, preferOfflineArgument); await runNpmInstall(entrypointFsDirname, npmArguments);
console.log('writing ncc package.json...'); console.log('writing ncc package.json...');
await download( await download(
@@ -37,48 +47,77 @@ async function commonForTwo({
'package.json': new FileBlob({ 'package.json': new FileBlob({
data: JSON.stringify({ data: JSON.stringify({
dependencies: { dependencies: {
'@zeit/ncc': '0.1.3-webpack', '@zeit/ncc': '0.3.0',
}, },
}), }),
}), }),
}, },
xNccPath, nccPath,
); );
console.log('running npm install for ncc...'); console.log('running npm install for ncc...');
await runNpmInstall(xNccPath, preferOfflineArgument); await runNpmInstall(nccPath, npmArguments);
return [filesOnDisk, xNccPath, entrypointFsDirname]; return [downloadedFiles, userPath, nccPath, entrypointFsDirname];
} }
async function compile(workNccPath, input) { async function compile(workNccPath, downloadedFiles, entrypoint) {
const input = downloadedFiles[entrypoint].fsPath;
const ncc = require(path.join(workNccPath, 'node_modules/@zeit/ncc')); const ncc = require(path.join(workNccPath, 'node_modules/@zeit/ncc'));
return ncc(input); const { code, assets } = await ncc(input);
const preparedFiles = {};
const blob = new FileBlob({ data: code });
// move all user code to 'user' subdirectory
preparedFiles[path.join('user', entrypoint)] = blob;
// eslint-disable-next-line no-restricted-syntax
for (const assetName of Object.keys(assets)) {
const blob2 = new FileBlob({ data: assets[assetName] });
preparedFiles[
path.join('user', path.dirname(entrypoint), assetName)
] = blob2;
}
return preparedFiles;
} }
exports.config = { exports.config = {
maxLambdaSize: '15mb', maxLambdaSize: '15mb',
}; };
exports.build = async ({ files, entrypoint, workPath }) => { /**
const [filesOnDisk, workNccPath, entrypointFsDirname] = await commonForTwo({ * @param {BuildParamsType} buildParams
files, * @returns {Promise<Files>}
entrypoint, */
workPath, exports.build = async ({
}); files, entrypoint, config, workPath,
}) => {
const [
downloadedFiles,
workUserPath,
workNccPath,
entrypointFsDirname,
] = await downloadInstallAndBundle(
{ files, entrypoint, workPath },
{ npmArguments: ['--prefer-offline'] },
);
console.log('running user script...'); console.log('running user script...');
await runPackageJsonScript(entrypointFsDirname, 'now-build'); await runPackageJsonScript(entrypointFsDirname, 'now-build');
console.log('compiling entrypoint with ncc...');
const data = await compile(workNccPath, filesOnDisk[entrypoint].fsPath);
const blob = new FileBlob({ data });
console.log('preparing lambda files...'); console.log('preparing lambda files...');
// move all user code to 'user' subdirectory let preparedFiles;
const compiledFiles = { [path.join('user', entrypoint)]: blob };
const launcherPath = path.join(__dirname, 'launcher.js');
let launcherData = await fsp.readFile(launcherPath, 'utf8');
if (config && config.bundle === false) {
// move all user code to 'user' subdirectory
preparedFiles = await glob('**', workUserPath);
preparedFiles = rename(preparedFiles, name => path.join('user', name));
} else {
console.log('compiling entrypoint with ncc...');
preparedFiles = await compile(workNccPath, downloadedFiles, entrypoint);
}
const launcherPath = path.join(__dirname, 'launcher.js');
let launcherData = await fs.readFile(launcherPath, 'utf8');
launcherData = launcherData.replace( launcherData = launcherData.replace(
'// PLACEHOLDER', '// PLACEHOLDER',
[ [
@@ -93,7 +132,7 @@ exports.build = async ({ files, entrypoint, workPath }) => {
}; };
const lambda = await createLambda({ const lambda = await createLambda({
files: { ...compiledFiles, ...launcherFiles }, files: { ...preparedFiles, ...launcherFiles },
handler: 'launcher.launcher', handler: 'launcher.launcher',
runtime: 'nodejs8.10', runtime: 'nodejs8.10',
}); });
@@ -105,7 +144,7 @@ exports.prepareCache = async ({
files, entrypoint, workPath, cachePath, files, entrypoint, workPath, cachePath,
}) => { }) => {
await fs.remove(workPath); await fs.remove(workPath);
await commonForTwo({ files, entrypoint, cachePath }); await downloadInstallAndBundle({ files, entrypoint, workPath: cachePath });
return { return {
...(await glob('user/node_modules/**', cachePath)), ...(await glob('user/node_modules/**', cachePath)),

View File

@@ -1,11 +1,14 @@
{ {
"name": "@now/node-server", "name": "@now/node-server",
"version": "0.4.23-canary.3", "version": "0.4.25-canary.2",
"dependencies": { "dependencies": {
"@now/node-bridge": "^0.1.8-canary.1", "@now/node-bridge": "^0.1.9",
"fs-extra": "7.0.1" "fs-extra": "7.0.1"
}, },
"peerDependencies": { "peerDependencies": {
"@now/build-utils": ">=0.0.1" "@now/build-utils": ">=0.0.1"
},
"scripts": {
"test": "jest"
} }
} }

View File

@@ -0,0 +1,11 @@
const cowsay = require('cowsay/build/cowsay.umd.js').say;
const http = require('http');
// test that process.env is not replaced by webpack
process.env.NODE_ENV = 'development';
const server = http.createServer((req, resp) => {
resp.end(cowsay({ text: 'cow:RANDOMNESS_PLACEHOLDER' }));
});
server.listen();

View File

@@ -0,0 +1,11 @@
{
"version": 2,
"builds": [
{ "src": "index.js", "use": "@now/node-server" },
{ "src": "subdirectory/index.js", "use": "@now/node-server" }
],
"probes": [
{ "path": "/", "mustContain": "cow:RANDOMNESS_PLACEHOLDER" },
{ "path": "/subdirectory/", "mustContain": "yoda:RANDOMNESS_PLACEHOLDER" }
]
}

View File

@@ -0,0 +1,5 @@
{
"dependencies": {
"cowsay": "^1.3.1"
}
}

View File

@@ -0,0 +1,11 @@
const yodasay = require('yodasay/build/yodasay.umd.js').say;
const http = require('http');
// test that process.env is not replaced by webpack
process.env.NODE_ENV = 'development';
const server = http.createServer((req, resp) => {
resp.end(yodasay({ text: 'yoda:RANDOMNESS_PLACEHOLDER' }));
});
server.listen();

View File

@@ -0,0 +1,5 @@
{
"dependencies": {
"yodasay": "^1.1.6"
}
}

View File

@@ -0,0 +1,10 @@
const assert = require('assert');
const http = require('http');
const server = http.createServer((req, resp) => {
assert(!process.env.RANDOMNESS_BUILD_ENV_VAR);
assert(process.env.RANDOMNESS_ENV_VAR);
resp.end('BUILD_TIME_PLACEHOLDER:build-env');
});
server.listen();

View File

@@ -0,0 +1,12 @@
const assert = require('assert');
const fs = require('fs');
assert(process.env.RANDOMNESS_BUILD_ENV_VAR);
assert(!process.env.RANDOMNESS_ENV_VAR);
fs.writeFileSync(
'index.js',
fs
.readFileSync('index.js', 'utf8')
.replace('BUILD_TIME_PLACEHOLDER', process.env.RANDOMNESS_BUILD_ENV_VAR),
);

View File

@@ -0,0 +1,5 @@
{
"scripts": {
"now-build": "node now-build.js"
}
}

View File

@@ -0,0 +1,10 @@
const assert = require('assert');
const http = require('http');
const server = http.createServer((req, resp) => {
assert(!process.env.RANDOMNESS_BUILD_ENV_VAR);
assert(process.env.RANDOMNESS_ENV_VAR);
resp.end(`${process.env.RANDOMNESS_ENV_VAR}:env`);
});
server.listen();

View File

@@ -0,0 +1,11 @@
{
"version": 2,
"builds": [
{ "src": "build-env/index.js", "use": "@now/node-server" },
{ "src": "env/index.js", "use": "@now/node-server" }
],
"probes": [
{ "path": "/build-env", "mustContain": "RANDOMNESS_PLACEHOLDER:build-env" },
{ "path": "/env", "mustContain": "RANDOMNESS_PLACEHOLDER:env" }
]
}

View File

@@ -0,0 +1,15 @@
const fs = require('fs');
const http = require('http');
const path = require('path');
const server = http.createServer((req, resp) => {
const asset1 = fs.readFileSync(
path.join(__dirname, 'subdirectory1/asset.txt'),
);
const asset2 = fs.readFileSync(
path.join(__dirname, 'subdirectory2/asset.txt'),
);
resp.end(`${asset1},${asset2}`);
});
server.listen();

View File

@@ -0,0 +1,9 @@
{
"version": 2,
"builds": [
{ "src": "index.js", "use": "@now/node-server" }
],
"probes": [
{ "path": "/", "mustContain": "asset1:RANDOMNESS_PLACEHOLDER,asset2:RANDOMNESS_PLACEHOLDER" }
]
}

View File

@@ -0,0 +1 @@
asset1:RANDOMNESS_PLACEHOLDER

View File

@@ -0,0 +1 @@
asset2:RANDOMNESS_PLACEHOLDER

View File

@@ -0,0 +1,11 @@
{
"version": 2,
"builds": [
{ "src": "with-bundle/index.js", "use": "@now/node-server" },
{ "src": "without-bundle/index.js", "use": "@now/node-server", "config": { "bundle": false } }
],
"probes": [
{ "path": "/with-bundle", "mustContain": "RANDOMNESS_PLACEHOLDER" },
{ "path": "/without-bundle", "mustContain": "RANDOMNESS_PLACEHOLDER" }
]
}

View File

@@ -0,0 +1,8 @@
const http = require('http');
const isBundled = require('./is-bundled.js');
const server = http.createServer((req, resp) => {
resp.end(isBundled() ? 'RANDOMNESS_PLACEHOLDER' : '');
});
server.listen();

View File

@@ -0,0 +1,3 @@
const path = require('path');
module.exports = () => path.basename(__filename) === 'index.js';

View File

@@ -0,0 +1,8 @@
const http = require('http');
const isBundled = require('./is-bundled.js');
const server = http.createServer((req, resp) => {
resp.end(isBundled() ? '' : 'RANDOMNESS_PLACEHOLDER');
});
server.listen();

View File

@@ -0,0 +1,3 @@
const path = require('path');
module.exports = () => path.basename(__filename) === 'index.js';

View File

@@ -0,0 +1,24 @@
const express = require('express');
const { ApolloServer, gql } = require('apollo-server-express');
const typeDefs = gql`
type Query {
hello: String
}
`;
const resolvers = {
Query: {
hello: () => 'apollo:RANDOMNESS_PLACEHOLDER',
},
};
const server = new ApolloServer({ typeDefs, resolvers, introspection: true });
const app = express();
server.applyMiddleware({ app });
app.get('/', (req, resp) => {
resp.redirect('/graphql');
});
app.listen({ port: 4000 });

View File

@@ -0,0 +1,7 @@
{
"dependencies": {
"apollo-server-express": "^2.2.2",
"express": "^4.16.4",
"graphql": "^14.0.2"
}
}

View File

@@ -0,0 +1,12 @@
{
"version": 2,
"builds": [
{ "src": "apollo/index.js", "use": "@now/node-server" }
],
"routes": [
{ "src": "/.*", "dest": "apollo/index.js" }
],
"probes": [
{ "path": "/graphql", "method": "POST", "body": { "query": "{hello}" }, "mustContain": "apollo:RANDOMNESS_PLACEHOLDER" }
]
}

View File

@@ -0,0 +1,29 @@
/* global beforeAll, expect, it, jest */
const fs = require('fs');
const path = require('path');
const {
packAndDeploy,
testDeployment,
} = require('../../../test/lib/deployment/test-deployment.js');
jest.setTimeout(2 * 60 * 1000);
let builderUrl;
beforeAll(async () => {
const builderPath = path.resolve(__dirname, '..');
builderUrl = await packAndDeploy(builderPath);
console.log('builderUrl', builderUrl);
});
const fixturesPath = path.resolve(__dirname, 'fixtures');
// eslint-disable-next-line no-restricted-syntax
for (const fixture of fs.readdirSync(fixturesPath)) {
// eslint-disable-next-line no-loop-func
it(`should build ${fixture}`, async () => {
await expect(
testDeployment({ builderUrl }, path.join(fixturesPath, fixture)),
).resolves.toBeDefined();
});
}

View File

@@ -0,0 +1 @@
/test

View File

@@ -5,14 +5,11 @@ const FileFsRef = require('@now/build-utils/file-fs-ref.js');
const fs = require('fs-extra'); const fs = require('fs-extra');
const glob = require('@now/build-utils/fs/glob.js'); const glob = require('@now/build-utils/fs/glob.js');
const path = require('path'); const path = require('path');
const { promisify } = require('util');
const { const {
runNpmInstall, runNpmInstall,
runPackageJsonScript, runPackageJsonScript,
} = require('@now/build-utils/fs/run-user-scripts.js'); } = require('@now/build-utils/fs/run-user-scripts.js');
const readFile = promisify(fs.readFile);
/** @typedef { import('@now/build-utils/file-ref') } FileRef */ /** @typedef { import('@now/build-utils/file-ref') } FileRef */
/** @typedef {{[filePath: string]: FileRef}} Files */ /** @typedef {{[filePath: string]: FileRef}} Files */
@@ -36,7 +33,7 @@ async function downloadInstallAndBundle(
const nccPath = path.join(workPath, 'ncc'); const nccPath = path.join(workPath, 'ncc');
console.log('downloading user files...'); console.log('downloading user files...');
const filesOnDisk = await download(files, userPath); const downloadedFiles = await download(files, userPath);
console.log('running npm install for user...'); console.log('running npm install for user...');
const entrypointFsDirname = path.join(userPath, path.dirname(entrypoint)); const entrypointFsDirname = path.join(userPath, path.dirname(entrypoint));
@@ -48,7 +45,7 @@ async function downloadInstallAndBundle(
'package.json': new FileBlob({ 'package.json': new FileBlob({
data: JSON.stringify({ data: JSON.stringify({
dependencies: { dependencies: {
'@zeit/ncc': '0.1.3-webpack', '@zeit/ncc': '0.3.0',
}, },
}), }),
}), }),
@@ -58,12 +55,27 @@ async function downloadInstallAndBundle(
console.log('running npm install for ncc...'); console.log('running npm install for ncc...');
await runNpmInstall(nccPath, npmArguments); await runNpmInstall(nccPath, npmArguments);
return [filesOnDisk, nccPath, entrypointFsDirname]; return [downloadedFiles, nccPath, entrypointFsDirname];
} }
async function compile(workNccPath, input) { async function compile(workNccPath, downloadedFiles, entrypoint) {
const input = downloadedFiles[entrypoint].fsPath;
const ncc = require(path.join(workNccPath, 'node_modules/@zeit/ncc')); const ncc = require(path.join(workNccPath, 'node_modules/@zeit/ncc'));
return ncc(input); const { code, assets } = await ncc(input);
const preparedFiles = {};
const blob = new FileBlob({ data: code });
// move all user code to 'user' subdirectory
preparedFiles[path.join('user', entrypoint)] = blob;
// eslint-disable-next-line no-restricted-syntax
for (const assetName of Object.keys(assets)) {
const blob2 = new FileBlob({ data: assets[assetName] });
preparedFiles[
path.join('user', path.dirname(entrypoint), assetName)
] = blob2;
}
return preparedFiles;
} }
exports.config = { exports.config = {
@@ -76,7 +88,7 @@ exports.config = {
*/ */
exports.build = async ({ files, entrypoint, workPath }) => { exports.build = async ({ files, entrypoint, workPath }) => {
const [ const [
filesOnDisk, downloadedFiles,
workNccPath, workNccPath,
entrypointFsDirname, entrypointFsDirname,
] = await downloadInstallAndBundle( ] = await downloadInstallAndBundle(
@@ -88,20 +100,16 @@ exports.build = async ({ files, entrypoint, workPath }) => {
await runPackageJsonScript(entrypointFsDirname, 'now-build'); await runPackageJsonScript(entrypointFsDirname, 'now-build');
console.log('compiling entrypoint with ncc...'); console.log('compiling entrypoint with ncc...');
const data = await compile(workNccPath, filesOnDisk[entrypoint].fsPath); const preparedFiles = await compile(workNccPath, downloadedFiles, entrypoint);
const blob = new FileBlob({ data });
console.log('preparing lambda files...');
// move all user code to 'user' subdirectory
const compiledFiles = { [path.join('user', entrypoint)]: blob };
const launcherPath = path.join(__dirname, 'launcher.js'); const launcherPath = path.join(__dirname, 'launcher.js');
let launcherData = await readFile(launcherPath, 'utf8'); let launcherData = await fs.readFile(launcherPath, 'utf8');
launcherData = launcherData.replace( launcherData = launcherData.replace(
'// PLACEHOLDER', '// PLACEHOLDER',
[ [
'process.chdir("./user");', 'process.chdir("./user");',
`listener = require("./${path.join('user', entrypoint)}");`, `listener = require("./${path.join('user', entrypoint)}");`,
'if (listener.default) listener = listener.default;',
].join(' '), ].join(' '),
); );
@@ -111,7 +119,7 @@ exports.build = async ({ files, entrypoint, workPath }) => {
}; };
const lambda = await createLambda({ const lambda = await createLambda({
files: { ...compiledFiles, ...launcherFiles }, files: { ...preparedFiles, ...launcherFiles },
handler: 'launcher.launcher', handler: 'launcher.launcher',
runtime: 'nodejs8.10', runtime: 'nodejs8.10',
}); });

View File

@@ -1,11 +1,14 @@
{ {
"name": "@now/node", "name": "@now/node",
"version": "0.4.25-canary.3", "version": "0.4.27-canary.2",
"dependencies": { "dependencies": {
"@now/node-bridge": "^0.1.8-canary.1", "@now/node-bridge": "^0.1.9",
"fs-extra": "7.0.1" "fs-extra": "7.0.1"
}, },
"peerDependencies": { "peerDependencies": {
"@now/build-utils": ">=0.0.1" "@now/build-utils": ">=0.0.1"
},
"scripts": {
"test": "jest"
} }
} }

View File

@@ -0,0 +1,8 @@
const cowsay = require('cowsay/build/cowsay.umd.js').say;
// test that process.env is not replaced by webpack
process.env.NODE_ENV = 'development';
module.exports = (req, resp) => {
resp.end(cowsay({ text: 'cow:RANDOMNESS_PLACEHOLDER' }));
};

View File

@@ -0,0 +1,11 @@
{
"version": 2,
"builds": [
{ "src": "index.js", "use": "@now/node" },
{ "src": "subdirectory/index.js", "use": "@now/node" }
],
"probes": [
{ "path": "/", "mustContain": "cow:RANDOMNESS_PLACEHOLDER" },
{ "path": "/subdirectory/", "mustContain": "yoda:RANDOMNESS_PLACEHOLDER" }
]
}

View File

@@ -0,0 +1,5 @@
{
"dependencies": {
"cowsay": "^1.3.1"
}
}

View File

@@ -0,0 +1,8 @@
const yodasay = require('yodasay/build/yodasay.umd.js').say;
// test that process.env is not replaced by webpack
process.env.NODE_ENV = 'development';
module.exports = (req, resp) => {
resp.end(yodasay({ text: 'yoda:RANDOMNESS_PLACEHOLDER' }));
};

View File

@@ -0,0 +1,5 @@
{
"dependencies": {
"yodasay": "^1.1.6"
}
}

View File

@@ -0,0 +1,7 @@
const assert = require('assert');
module.exports = (req, resp) => {
assert(!process.env.RANDOMNESS_BUILD_ENV_VAR);
assert(process.env.RANDOMNESS_ENV_VAR);
resp.end('BUILD_TIME_PLACEHOLDER:build-env');
};

View File

@@ -0,0 +1,12 @@
const assert = require('assert');
const fs = require('fs');
assert(process.env.RANDOMNESS_BUILD_ENV_VAR);
assert(!process.env.RANDOMNESS_ENV_VAR);
fs.writeFileSync(
'index.js',
fs
.readFileSync('index.js', 'utf8')
.replace('BUILD_TIME_PLACEHOLDER', process.env.RANDOMNESS_BUILD_ENV_VAR),
);

View File

@@ -0,0 +1,5 @@
{
"scripts": {
"now-build": "node now-build.js"
}
}

View File

@@ -0,0 +1,7 @@
const assert = require('assert');
module.exports = (req, resp) => {
assert(!process.env.RANDOMNESS_BUILD_ENV_VAR);
assert(process.env.RANDOMNESS_ENV_VAR);
resp.end(`${process.env.RANDOMNESS_ENV_VAR}:env`);
};

View File

@@ -0,0 +1,11 @@
{
"version": 2,
"builds": [
{ "src": "build-env/index.js", "use": "@now/node" },
{ "src": "env/index.js", "use": "@now/node" }
],
"probes": [
{ "path": "/build-env", "mustContain": "RANDOMNESS_PLACEHOLDER:build-env" },
{ "path": "/env", "mustContain": "RANDOMNESS_PLACEHOLDER:env" }
]
}

View File

@@ -0,0 +1,12 @@
const fs = require('fs');
const path = require('path');
module.exports = (req, resp) => {
const asset1 = fs.readFileSync(
path.join(__dirname, 'subdirectory1/asset.txt'),
);
const asset2 = fs.readFileSync(
path.join(__dirname, 'subdirectory2/asset.txt'),
);
resp.end(`${asset1},${asset2}`);
};

View File

@@ -0,0 +1,9 @@
{
"version": 2,
"builds": [
{ "src": "index.js", "use": "@now/node" }
],
"probes": [
{ "path": "/", "mustContain": "asset1:RANDOMNESS_PLACEHOLDER,asset2:RANDOMNESS_PLACEHOLDER" }
]
}

View File

@@ -0,0 +1 @@
asset1:RANDOMNESS_PLACEHOLDER

View File

@@ -0,0 +1 @@
asset2:RANDOMNESS_PLACEHOLDER

View File

@@ -0,0 +1,29 @@
/* global beforeAll, expect, it, jest */
const fs = require('fs');
const path = require('path');
const {
packAndDeploy,
testDeployment,
} = require('../../../test/lib/deployment/test-deployment.js');
jest.setTimeout(2 * 60 * 1000);
let builderUrl;
beforeAll(async () => {
const builderPath = path.resolve(__dirname, '..');
builderUrl = await packAndDeploy(builderPath);
console.log('builderUrl', builderUrl);
});
const fixturesPath = path.resolve(__dirname, 'fixtures');
// eslint-disable-next-line no-restricted-syntax
for (const fixture of fs.readdirSync(fixturesPath)) {
// eslint-disable-next-line no-loop-func
it(`should build ${fixture}`, async () => {
await expect(
testDeployment({ builderUrl }, path.join(fixturesPath, fixture)),
).resolves.toBeDefined();
});
}

View File

@@ -6,7 +6,10 @@ exports.analyze = ({ files, entrypoint }) => files[entrypoint].digest;
exports.build = async ({ files, entrypoint }) => { exports.build = async ({ files, entrypoint }) => {
const optimizer = new OptiPng(['-o9']); const optimizer = new OptiPng(['-o9']);
const stream = pipe(files[entrypoint].toStream(), optimizer); const stream = pipe(
files[entrypoint].toStream(),
optimizer,
);
const result = await FileBlob.fromStream({ stream }); const result = await FileBlob.fromStream({ stream });
return { [entrypoint]: result }; return { [entrypoint]: result };
}; };

View File

@@ -1,6 +1,6 @@
{ {
"name": "@now/optipng", "name": "@now/optipng",
"version": "0.4.6-canary.0", "version": "0.4.7",
"dependencies": { "dependencies": {
"multipipe": "2.0.3", "multipipe": "2.0.3",
"optipng": "1.1.0" "optipng": "1.1.0"

Some files were not shown because too many files have changed in this diff Show More