12
12
"build:clients:since:release" : " yarn build:packages && lerna run build $(lerna changed | grep -e '@aws-sdk/[client|lib]-*' | sed 's/^/ --scope /' | tr '\n ' ' ')" ,
13
13
"build:crypto-dependencies" : " lerna run --scope '@aws-sdk/{types,util-utf8-browser,util-locate-window,hash-node}' --include-dependencies build" ,
14
14
"build:docs" : " typedoc" ,
15
+ "build:e2e" : " yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/{client-cloudformation,karma-credential-loader}' --include-dependencies build" ,
15
16
"build:packages" : " lerna run build --ignore '@aws-sdk/client-*' --ignore '@aws-sdk/aws-*' --ignore '@aws-sdk/lib-*' --include-dependencies" ,
16
17
"build:protocols" : " yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/aws-protocoltests-*' --include-dependencies build" ,
17
18
"build:server-protocols" : " yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/*-server' --include-dependencies build" ,
25
26
"generate:defaults-mode-provider" : " ./scripts/generate-defaults-mode-provider/index.js" ,
26
27
"lerna:version" : " lerna version --exact --conventional-commits --no-push --no-git-tag-version --no-commit-hooks --loglevel silent --no-private --yes" ,
27
28
"local-publish" : " node ./scripts/verdaccio-publish/index.js" ,
28
- "pretest:all" : " yarn build:all" ,
29
- "pretest:e2e" : " yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/{client-cloudformation,karma-credential-loader}' --include-dependencies build" ,
30
- "test:all" : " jest --coverage --passWithNoTests && lerna run test --scope '@aws-sdk/{fetch-http-handler,hash-blob-browser}' && yarn test:versions" ,
31
- "test:e2e" : " node ./tests/e2e/index.js" ,
29
+ "test:all" : " yarn build:all && jest --coverage --passWithNoTests && lerna run test --scope '@aws-sdk/{fetch-http-handler,hash-blob-browser}' && yarn test:versions" ,
30
+ "test:e2e" : " yarn build:e2e && node ./tests/e2e/index.js" ,
32
31
"test:functional" : " jest --config tests/functional/jest.config.js" ,
33
32
"test:integration" : " jest --config jest.config.integ.js --passWithNoTests" ,
34
33
"test:integration:legacy" : " cucumber-js --fail-fast" ,
143
142
],
144
143
"**/*.{ts,js,md,json}" : " prettier --write"
145
144
}
146
- }
145
+ }
0 commit comments