Skip to content

Commit e6694b5

Browse files
authored
Release 0.17.0 (#348)
1 parent 9718403 commit e6694b5

File tree

5 files changed

+18
-189
lines changed

5 files changed

+18
-189
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1717
<!-- ### Fixed -->
1818
<!-- ### Removed -->
1919

20-
## Unreleased
20+
<!-- ## Unreleased -->
21+
22+
## [0.17.0] - 2022-11-11
2123

2224
### Changed
2325

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -344,14 +344,14 @@ Playground automatically compiles `.ts`, `.tsx`, and `.jsx` files using
344344

345345
The following compiler settings are used:
346346

347-
| Name | Value |
348-
| ------------------------------------------------------------------------------------------ | -------- |
349-
| [`target`](https://www.typescriptlang.org/tsconfig#target) | `ES2017` |
350-
| [`module`](https://www.typescriptlang.org/tsconfig#module) | `ESNext` |
351-
| [`moduleResolution`](https://www.typescriptlang.org/tsconfig#moduleResolution) | `node` |
352-
| [`experimentalDecorators`](https://www.typescriptlang.org/tsconfig#experimentalDecorators) | `true` |
353-
| [`allowJs`](https://www.typescriptlang.org/tsconfig#allowJs) | `true` |
354-
| [`jsx`](https://www.typescriptlang.org/tsconfig#jsx) | `react` |
347+
| Name | Value |
348+
| ------------------------------------------------------------------------------------------ | ---------- |
349+
| [`target`](https://www.typescriptlang.org/tsconfig#target) | `es2021` |
350+
| [`module`](https://www.typescriptlang.org/tsconfig#module) | `esnext` |
351+
| [`moduleResolution`](https://www.typescriptlang.org/tsconfig#moduleResolution) | `nodenext` |
352+
| [`experimentalDecorators`](https://www.typescriptlang.org/tsconfig#experimentalDecorators) | `true` |
353+
| [`allowJs`](https://www.typescriptlang.org/tsconfig#allowJs) | `true` |
354+
| [`jsx`](https://www.typescriptlang.org/tsconfig#jsx) | `react` |
355355

356356
Note that when you import from another project module, the import
357357
statement should use the `.js` extension (the same as you would do when running

package-lock.json

Lines changed: 5 additions & 176 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "playground-elements",
3-
"version": "0.16.3",
3+
"version": "0.17.0",
44
"description": "Serverless coding environments for the web",
55
"homepage": "https://github.com/google/playground-elements#readme",
66
"repository": "github:google/playground-elements",
@@ -292,9 +292,7 @@
292292
"rollup": "^3.2.5",
293293
"rollup-plugin-copy": "^3.3.0",
294294
"rollup-plugin-lit-css": "^4.0.0",
295-
"rollup-plugin-node-polyfills": "^0.2.1",
296295
"semver": "^7.3.5",
297-
"tsc-watch": "^5.0.3",
298296
"typescript": "~4.8.4",
299297
"wireit": "^0.7.3-pre.3"
300298
},

src/shared/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88

99
// This file is automatically generated by scripts/update-version-module.js
1010
// before publishing.
11-
export const npmVersion = '0.16.3';
11+
export const npmVersion = '0.17.0';
1212
export const serviceWorkerHash = '1dae6563';

0 commit comments

Comments
 (0)