Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release v2.14.1 #2866

Merged
merged 1 commit into from
Jun 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"exact": true,
"npmClient": "yarn",
"useWorkspaces": true,
"version": "2.14.0"
"version": "2.14.1"
}
6 changes: 3 additions & 3 deletions packages/@lwc/babel-plugin-component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"bugs": {
"url": "https://github.com/salesforce/lwc/issues"
},
"version": "2.14.0",
"version": "2.14.1",
"main": "src/index.js",
"typings": "src/index.d.ts",
"license": "MIT",
Expand All @@ -21,8 +21,8 @@
],
"dependencies": {
"@babel/helper-module-imports": "~7.16.7",
"@lwc/errors": "2.14.0",
"@lwc/shared": "2.14.0",
"@lwc/errors": "2.14.1",
"@lwc/shared": "2.14.1",
"line-column": "~1.0.2"
},
"peerDependencies": {
Expand Down
12 changes: 6 additions & 6 deletions packages/@lwc/compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lwc/compiler",
"version": "2.14.0",
"version": "2.14.1",
"description": "LWC compiler",
"homepage": "https://lwc.dev/",
"repository": {
Expand All @@ -26,11 +26,11 @@
"@babel/core": "~7.17.10",
"@babel/plugin-proposal-class-properties": "~7.16.7",
"@babel/plugin-proposal-object-rest-spread": "~7.17.3",
"@lwc/babel-plugin-component": "2.14.0",
"@lwc/errors": "2.14.0",
"@lwc/shared": "2.14.0",
"@lwc/style-compiler": "2.14.0",
"@lwc/template-compiler": "2.14.0"
"@lwc/babel-plugin-component": "2.14.1",
"@lwc/errors": "2.14.1",
"@lwc/shared": "2.14.1",
"@lwc/style-compiler": "2.14.1",
"@lwc/template-compiler": "2.14.1"
},
"publishConfig": {
"access": "public"
Expand Down
6 changes: 3 additions & 3 deletions packages/@lwc/engine-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lwc/engine-core",
"version": "2.14.0",
"version": "2.14.1",
"description": "Core LWC engine APIs.",
"homepage": "https://lwc.dev/",
"repository": {
Expand All @@ -25,8 +25,8 @@
"types/"
],
"dependencies": {
"@lwc/features": "2.14.0",
"@lwc/shared": "2.14.0"
"@lwc/features": "2.14.1",
"@lwc/shared": "2.14.1"
},
"devDependencies": {
"observable-membrane": "2.0.0"
Expand Down
6 changes: 3 additions & 3 deletions packages/@lwc/engine-dom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lwc/engine-dom",
"version": "2.14.0",
"version": "2.14.1",
"description": "Renders LWC components in a DOM environment.",
"homepage": "https://lwc.dev/",
"repository": {
Expand All @@ -25,8 +25,8 @@
"types/"
],
"devDependencies": {
"@lwc/engine-core": "2.14.0",
"@lwc/shared": "2.14.0"
"@lwc/engine-core": "2.14.1",
"@lwc/shared": "2.14.1"
},
"lwc": {
"modules": [
Expand Down
6 changes: 3 additions & 3 deletions packages/@lwc/engine-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lwc/engine-server",
"version": "2.14.0",
"version": "2.14.1",
"description": "Renders LWC components in a server environment.",
"homepage": "https://lwc.dev/",
"repository": {
Expand All @@ -25,8 +25,8 @@
"types/"
],
"devDependencies": {
"@lwc/engine-core": "2.14.0",
"@lwc/shared": "2.14.0"
"@lwc/engine-core": "2.14.1",
"@lwc/shared": "2.14.1"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/@lwc/errors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lwc/errors",
"version": "2.14.0",
"version": "2.14.1",
"description": "LWC Error Utilities",
"homepage": "https://lwc.dev/",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions packages/@lwc/features/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lwc/features",
"version": "2.14.0",
"version": "2.14.1",
"description": "LWC Features Flags",
"homepage": "https://lwc.dev/",
"repository": {
Expand All @@ -25,7 +25,7 @@
"types/"
],
"dependencies": {
"@lwc/shared": "2.14.0"
"@lwc/shared": "2.14.1"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/@lwc/module-resolver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"bugs": {
"url": "https://github.com/salesforce/lwc/issues"
},
"version": "2.14.0",
"version": "2.14.1",
"main": "dist/commonjs/index.js",
"typings": "dist/types/index.d.ts",
"scripts": {
Expand Down
10 changes: 5 additions & 5 deletions packages/@lwc/rollup-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lwc/rollup-plugin",
"version": "2.14.0",
"version": "2.14.1",
"description": "Rollup plugin to compile LWC",
"homepage": "https://lwc.dev/",
"repository": {
Expand All @@ -23,12 +23,12 @@
"dist/"
],
"devDependencies": {
"@lwc/compiler": "2.14.0",
"@lwc/engine-dom": "2.14.0",
"@lwc/errors": "2.14.0"
"@lwc/compiler": "2.14.1",
"@lwc/engine-dom": "2.14.1",
"@lwc/errors": "2.14.1"
},
"dependencies": {
"@lwc/module-resolver": "2.14.0",
"@lwc/module-resolver": "2.14.1",
"@rollup/pluginutils": "~4.2.1"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/@lwc/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lwc/shared",
"version": "2.14.0",
"version": "2.14.1",
"description": "Utilities and methods that are shared across packages",
"homepage": "https://lwc.dev/",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions packages/@lwc/style-compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lwc/style-compiler",
"version": "2.14.0",
"version": "2.14.1",
"description": "Transform style sheet to be consumed by the LWC engine",
"homepage": "https://lwc.dev/",
"repository": {
Expand All @@ -23,7 +23,7 @@
"dist/"
],
"dependencies": {
"@lwc/shared": "2.14.0",
"@lwc/shared": "2.14.1",
"postcss": "~8.4.13",
"postcss-selector-parser": "~6.0.9",
"postcss-value-parser": "~4.2.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/@lwc/synthetic-shadow/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lwc/synthetic-shadow",
"version": "2.14.0",
"version": "2.14.1",
"description": "Synthetic Shadow Root for LWC",
"homepage": "https://lwc.dev/",
"repository": {
Expand Down Expand Up @@ -37,7 +37,7 @@
"access": "public"
},
"devDependencies": {
"@lwc/features": "2.14.0",
"@lwc/shared": "2.14.0"
"@lwc/features": "2.14.1",
"@lwc/shared": "2.14.1"
}
}
6 changes: 3 additions & 3 deletions packages/@lwc/template-compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lwc/template-compiler",
"version": "2.14.0",
"version": "2.14.1",
"description": "Template compiler package",
"homepage": "https://lwc.dev/",
"repository": {
Expand All @@ -26,8 +26,8 @@
},
"//": "Currently can't upgrade estree-walker to v3.0.0 because it dropped CommonJS support: https://git.io/JXguS",
"dependencies": {
"@lwc/errors": "2.14.0",
"@lwc/shared": "2.14.0",
"@lwc/errors": "2.14.1",
"@lwc/shared": "2.14.1",
"acorn": "~8.7.1",
"astring": "~1.8.3",
"estree-walker": "~2.0.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/@lwc/wire-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lwc/wire-service",
"version": "2.14.0",
"version": "2.14.1",
"description": "@wire service",
"homepage": "https://lwc.dev/",
"repository": {
Expand All @@ -25,8 +25,8 @@
"types/"
],
"devDependencies": {
"@lwc/engine-core": "2.14.0",
"@lwc/shared": "2.14.0"
"@lwc/engine-core": "2.14.1",
"@lwc/shared": "2.14.1"
},
"lwc": {
"modules": [
Expand Down
12 changes: 6 additions & 6 deletions packages/integration-karma/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "integration-karma",
"private": true,
"version": "2.14.0",
"version": "2.14.1",
"scripts": {
"start": "karma start ./scripts/karma-configs/test/local.js",
"test": "karma start ./scripts/karma-configs/test/local.js --single-run --browsers ChromeHeadless",
Expand All @@ -14,11 +14,11 @@
"coverage": "node ./scripts/merge-coverage.js"
},
"devDependencies": {
"@lwc/compiler": "2.14.0",
"@lwc/engine-dom": "2.14.0",
"@lwc/engine-server": "2.14.0",
"@lwc/rollup-plugin": "2.14.0",
"@lwc/synthetic-shadow": "2.14.0",
"@lwc/compiler": "2.14.1",
"@lwc/engine-dom": "2.14.1",
"@lwc/engine-server": "2.14.1",
"@lwc/rollup-plugin": "2.14.1",
"@lwc/synthetic-shadow": "2.14.1",
"chokidar": "^3.5.3",
"istanbul-lib-coverage": "^3.2.0",
"istanbul-lib-report": "^3.0.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/integration-tests/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "integration-tests",
"private": true,
"version": "2.14.0",
"version": "2.14.1",
"scripts": {
"build": "node scripts/build.js",
"build:dev": "MODE=dev yarn build",
Expand All @@ -20,7 +20,7 @@
"sauce:prod_compat": "MODE=prod_compat yarn build:prod_compat && MODE=prod_compat wdio ./scripts/wdio.sauce.conf.js"
},
"devDependencies": {
"@lwc/rollup-plugin": "2.14.0",
"@lwc/rollup-plugin": "2.14.1",
"@wdio/cli": "^7.19.6",
"@wdio/local-runner": "^7.19.5",
"@wdio/mocha-framework": "^7.19.5",
Expand All @@ -30,7 +30,7 @@
"@wdio/static-server-service": "^7.19.5",
"deepmerge": "^4.2.2",
"dotenv": "^16.0.0",
"lwc": "2.14.0",
"lwc": "2.14.1",
"minimist": "^1.2.5",
"webdriverio": "^7.19.5"
}
Expand Down
14 changes: 7 additions & 7 deletions packages/lwc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lwc",
"version": "2.14.0",
"version": "2.14.1",
"description": "Lightning Web Components (LWC)",
"homepage": "https://lwc.dev/",
"repository": {
Expand Down Expand Up @@ -42,11 +42,11 @@
]
},
"dependencies": {
"@lwc/compiler": "2.14.0",
"@lwc/engine-dom": "2.14.0",
"@lwc/engine-server": "2.14.0",
"@lwc/features": "2.14.0",
"@lwc/synthetic-shadow": "2.14.0",
"@lwc/wire-service": "2.14.0"
"@lwc/compiler": "2.14.1",
"@lwc/engine-dom": "2.14.1",
"@lwc/engine-server": "2.14.1",
"@lwc/features": "2.14.1",
"@lwc/synthetic-shadow": "2.14.1",
"@lwc/wire-service": "2.14.1"
}
}
4 changes: 2 additions & 2 deletions packages/perf-benchmarks-components/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "perf-benchmarks-components",
"version": "2.14.0",
"version": "2.14.1",
"private": true,
"scripts": {
"build": "rm -fr dist && rollup -c"
},
"devDependencies": {
"@lwc/rollup-plugin": "2.14.0"
"@lwc/rollup-plugin": "2.14.1"
}
}
10 changes: 5 additions & 5 deletions packages/perf-benchmarks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "perf-benchmarks",
"version": "2.14.0",
"version": "2.14.1",
"private": true,
"scripts": {
"build": "rm -fr dist && rollup -c && node scripts/build.js && ./scripts/fix-deps.sh",
Expand All @@ -10,10 +10,10 @@
},
"//": "Note it's important for Tachometer that any deps it needs to swap out are dependencies, not devDependencies",
"dependencies": {
"@lwc/engine-dom": "2.14.0",
"@lwc/engine-server": "2.14.0",
"@lwc/synthetic-shadow": "2.14.0",
"perf-benchmarks-components": "2.14.0"
"@lwc/engine-dom": "2.14.1",
"@lwc/engine-server": "2.14.1",
"@lwc/synthetic-shadow": "2.14.1",
"perf-benchmarks-components": "2.14.1"
},
"devDependencies": {
"glob-hash": "^1.0.5",
Expand Down