From 0ce03fc7f2daf29b9afcd9ead7021a1b740e9575 Mon Sep 17 00:00:00 2001 From: Sergio Cinos Date: Tue, 20 Jul 2021 08:37:16 +0200 Subject: [PATCH 1/5] Add @automattic prefix to package name --- README.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bec80c8db..e9f3550c0 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ import 'isolated-block-editor/build-browser/core.css'; The module is currently only available on Github and can be added with: -`npm install "github:automattic/isolated-block-editor#1.2.0" --save` (where `1.2.0` is the version you want to use) +`npm install @automattic/isolated-block-editor@1.2.0" --save` (where `1.2.0` is the version you want to use) ## Future diff --git a/package.json b/package.json index b7431d514..ea8bddb1a 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "isolated-block-editor", + "name": "@automattic/isolated-block-editor", "version": "1.3.0", "description": "Repackages Gutenberg's editor playground as multi-instance editor.", "main": "build/index.js", From 22ca450827475309790d9649f68840436227229d Mon Sep 17 00:00:00 2001 From: Sergio Cinos Date: Tue, 20 Jul 2021 10:14:58 +0200 Subject: [PATCH 2/5] Configure release-it to push to npm --- package.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ea8bddb1a..f2088d1b8 100644 --- a/package.json +++ b/package.json @@ -124,7 +124,9 @@ "assets": [ "dist/isolated-block-editor.zip" ] - }, - "npm": false + } + }, + "publishConfig": { + "access": "public" } } From 834073115c767b97d88fb3010113a223570a1cfa Mon Sep 17 00:00:00 2001 From: Sergio Cinos Date: Tue, 20 Jul 2021 10:18:27 +0200 Subject: [PATCH 3/5] Add changelog --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..c336cc425 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [2.0.0] - 2021-07-20 + +### Changed +- Package renamed to @automattic/isolated-block-editor From aa2b6facd9278c2318635fdb1f4edc4f20faee6e Mon Sep 17 00:00:00 2001 From: Sergio Cinos Date: Tue, 20 Jul 2021 10:31:30 +0200 Subject: [PATCH 4/5] Make npm registry explicit --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index f2088d1b8..da0512c52 100644 --- a/package.json +++ b/package.json @@ -127,6 +127,7 @@ } }, "publishConfig": { - "access": "public" + "access": "public", + "registry": "https://registry.npmjs.org/" } } From 6a92ece9d2f71ebdba49d8cb062190ed10101fff Mon Sep 17 00:00:00 2001 From: Sergio Cinos Date: Tue, 20 Jul 2021 10:33:10 +0200 Subject: [PATCH 5/5] Release 2.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index da0512c52..12ef9cb47 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/isolated-block-editor", - "version": "1.3.0", + "version": "2.0.0", "description": "Repackages Gutenberg's editor playground as multi-instance editor.", "main": "build/index.js", "module": "build-module/index.js",