From 8b240c55e2e14c828f59c6846874a3655ea2ac15 Mon Sep 17 00:00:00 2001 From: aws-amplify-bot Date: Thu, 15 Jul 2021 01:28:44 +0000 Subject: [PATCH] chore(release): Publish [ci skip] - @aws-amplify/cli-overrides-helper@1.1.0-ext.0 --- .../amplify-cli-overrides-helper/CHANGELOG.md | 11 +++ .../amplify-cli-overrides-helper/package.json | 83 +++++++++---------- 2 files changed, 51 insertions(+), 43 deletions(-) create mode 100644 packages/amplify-cli-overrides-helper/CHANGELOG.md diff --git a/packages/amplify-cli-overrides-helper/CHANGELOG.md b/packages/amplify-cli-overrides-helper/CHANGELOG.md new file mode 100644 index 00000000000..1195417a506 --- /dev/null +++ b/packages/amplify-cli-overrides-helper/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 1.1.0-ext.0 (2021-07-15) + + +### Features + +* add helper util package for overrides ([#7726](https://github.com/aws-amplify/amplify-cli/issues/7726)) ([38088d3](https://github.com/aws-amplify/amplify-cli/commit/38088d3fa09221e50d290ebf47ac31e31ad584d7)) diff --git a/packages/amplify-cli-overrides-helper/package.json b/packages/amplify-cli-overrides-helper/package.json index d74ee903d1a..da42c64329f 100644 --- a/packages/amplify-cli-overrides-helper/package.json +++ b/packages/amplify-cli-overrides-helper/package.json @@ -1,47 +1,44 @@ { - "name": "@aws-amplify/cli-overrides-helper", - "version": "1.0.0", - "description": "Amplify CLI Overrides Helper utility package", - "repository": { - "type": "git", - "url": "https://github.com/aws-amplify/amplify-cli.git", - "directory": "packages/amplify-cli-overrides-helper" + "name": "@aws-amplify/cli-overrides-helper", + "version": "1.1.0-ext.0", + "description": "Amplify CLI Overrides Helper utility package", + "repository": { + "type": "git", + "url": "https://github.com/aws-amplify/amplify-cli.git", + "directory": "packages/amplify-cli-overrides-helper" + }, + "author": "Amazon Web Services", + "license": "Apache-2.0", + "main": "lib/index.js", + "types": "lib/index.d.ts", + "keywords": [ + "graphql", + "cli", + "cloudformation", + "aws", + "amplify" + ], + "publishConfig": { + "access": "public" + }, + "scripts": { + "build": "tsc", + "watch": "tsc -w", + "clean": "rimraf ./lib" + }, + "jest": { + "transform": { + "^.+\\.(ts|tsx)?$": "ts-jest" }, - "author": "Amazon Web Services", - "license": "Apache-2.0", - "main": "lib/index.js", - "types": "lib/index.d.ts", - "keywords": [ - "graphql", - "cli", - "cloudformation", - "aws", - "amplify" + "testRegex": "(src/__tests__/.*.test.ts)$", + "moduleFileExtensions": [ + "ts", + "tsx", + "js", + "jsx", + "json", + "node" ], - "publishConfig": { - "access": "public" - }, - "scripts": { - "build": "tsc", - "watch": "tsc -w", - "clean": "rimraf ./lib" - }, - "dependencies": {}, - "devDependencies": {}, - "jest": { - "transform": { - "^.+\\.(ts|tsx)?$": "ts-jest" - }, - "testRegex": "(src/__tests__/.*.test.ts)$", - "moduleFileExtensions": [ - "ts", - "tsx", - "js", - "jsx", - "json", - "node" - ], - "collectCoverage": true - } + "collectCoverage": true } - \ No newline at end of file +}