Skip to content

Commit

Permalink
chore: Restore @aws-cdk/aws-serverless with redirect (aws#2110)
Browse files Browse the repository at this point in the history
So that we publish a nice "final" version out with the next version bump.
  • Loading branch information
RomainMuller authored Mar 28, 2019
1 parent 66dd228 commit 7d4b9df
Show file tree
Hide file tree
Showing 8 changed files with 839 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const AWS = require('aws-sdk-mock');
const LambdaTester = require('lambda-tester');
const LambdaTester = require('lambda-tester').noVersionCheck();
const sinon = require('sinon');
const handler = require('..');
const nock = require('nock');
Expand Down
4 changes: 4 additions & 0 deletions packages/@aws-cdk/aws-serverless/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.jsii
tsconfig.json
*.d.ts
*.js
9 changes: 9 additions & 0 deletions packages/@aws-cdk/aws-serverless/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
*.ts
!*.d.ts


# Exclude jsii outdir
dist

# Include .jsii
!.jsii
4 changes: 4 additions & 0 deletions packages/@aws-cdk/aws-serverless/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## AWS Serverless Construct Library

The last version published for this module was `0.26.0`. Since then, this module
was renamed to `@aws-cdk/aws-sam` - please upgrade your dependencies accordingly.
4 changes: 4 additions & 0 deletions packages/@aws-cdk/aws-serverless/lib/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export * from '@aws-cdk/aws-sam';

// tslint:disable-next-line: no-console
console.error('WARNING: The @aws-cdk/serverless package was renamed to @aws-cdk/sam. Please update your dependencies!');
Loading

0 comments on commit 7d4b9df

Please sign in to comment.