Skip to content

Commit 424a33a

Browse files
committed
v2.1.3
1 parent ac9eafb commit 424a33a

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@immutable/devtools",
33
"description": "Immutable.js DevTools",
44
"type": "module",
5-
"version": "2.1.2",
5+
"version": "2.1.3",
66
"scripts": {
77
"dev": "yarn workspace @immutable/devtools-extension run dev",
88
"build": "yarn workspaces foreach --all -pt run build",

packages/devtools/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@jdeniau/immutable-devtools",
33
"type": "module",
4-
"version": "2.1.2",
4+
"version": "2.1.3",
55
"description": "Chrome Dev Tools formatter for the Immutable JS library",
66
"exports": {
77
".": {
@@ -16,8 +16,9 @@
1616
"dist"
1717
],
1818
"scripts": {
19+
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true });\"",
1920
"build:types": "tsc",
20-
"build:module": "rm -rf dist; rollup -c",
21+
"build:module": "yarn clean && rollup -c",
2122
"build": "yarn run build:types && yarn run build:module",
2223
"lint:types": "tsc --noEmit",
2324
"lint": "yarn run lint:types",

packages/extension/extension/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "Immutable.js devtools extension",
33
"short_name": "Immutable.js devtools",
44
"description": "Makes Immutable JS objects more readable when they are logged to the console.",
5-
"version": "2.1.2",
5+
"version": "2.1.3",
66
"manifest_version": 3,
77
"minimum_chrome_version": "88.0",
88
"content_scripts": [

packages/extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@immutable/devtools-extension",
33
"type": "module",
4-
"version": "2.1.2",
4+
"version": "2.1.3",
55
"description": "",
66
"exports": "./index.js",
77
"scripts": {

0 commit comments

Comments
 (0)