Skip to content

feat!: deprecate node12. BREAKING CHANGE: Remove node12 from CI #1095

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Feb 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ batch:
buildspec: codebuild/nodejs_latest.yml
env:
image: aws/codebuild/standard:5.0
- identifier: testNodejs12
buildspec: codebuild/nodejs12.yml
env:
image: aws/codebuild/standard:5.0
- identifier: testNodejs14
buildspec: codebuild/nodejs14.yml
env:
Expand All @@ -33,10 +29,6 @@ batch:
variables:
PUBLISH_LOCAL: "true"
image: aws/codebuild/standard:5.0
- identifier: testVectorsNodejs12
buildspec: codebuild/test_vectors/nodejs12.yml
env:
image: aws/codebuild/standard:5.0
- identifier: testVectorsNodejs14
buildspec: codebuild/test_vectors/nodejs14.yml
env:
Expand Down
16 changes: 0 additions & 16 deletions codebuild/nodejs12.yml

This file was deleted.

5 changes: 2 additions & 3 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ module.exports = function (config) {
'modules/**/build/module/test/*.js': ['webpack', 'credentials'],
},
webpack: {
resolve: {
extensions: ['.js'],
},
mode: 'development',
module: {
rules: [
Expand Down Expand Up @@ -75,9 +72,11 @@ module.exports = function (config) {
},
devtool: 'source-map',
resolve: {
extensions: ['.js'],
fallback: {
fs: false,
crypto: false,
util: false
},
},
},
Expand Down
Loading