Skip to content

Commit

Permalink
fix: remove antitamper
Browse files Browse the repository at this point in the history
  • Loading branch information
Thon Becker committed May 15, 2021
1 parent fde06ba commit ee6498f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/release.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .projen/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"spawn": "test:compile"
},
{
"exec": "jest --passWithNoTests --all --updateSnapshot"
"exec": "jest --passWithNoTests --all"
},
{
"spawn": "eslint"
Expand Down
2 changes: 1 addition & 1 deletion .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const project = new AwsCdkConstructLibrary({
license: 'Apache-2.0',
licensed: true,
allowLibraryDependencies: true,
antitamper: true,
antitamper: false,
autoDetectBin: true,
buildWorkflow: true,
defaultReleaseBranch: 'main',
Expand Down
6 changes: 3 additions & 3 deletions src/cdk-simplewebsite-deploy.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import * as acm from '@aws-cdk/aws-certificatemanager';
import * as cloudfront from '@aws-cdk/aws-cloudfront';
import * as origins from '@aws-cdk/aws-cloudfront-origins';
import * as route53 from '@aws-cdk/aws-route53';
import * as cloudfront from '@aws-cdk/aws-cloudfront';
import * as targets from '@aws-cdk/aws-route53-targets';
import * as s3 from '@aws-cdk/aws-s3';
import * as route53 from '@aws-cdk/aws-route53';
import * as s3deploy from '@aws-cdk/aws-s3-deployment';
import * as s3 from '@aws-cdk/aws-s3';
import { RemovalPolicy, Construct } from '@aws-cdk/core';

export interface BasicSiteConfiguration {
Expand Down

0 comments on commit ee6498f

Please sign in to comment.