Skip to content

Commit

Permalink
Release 0.17.0 (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
aomarks authored Nov 11, 2022
1 parent 9718403 commit e6694b5
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 189 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- ### Fixed -->
<!-- ### Removed -->

## Unreleased
<!-- ## Unreleased -->

## [0.17.0] - 2022-11-11

### Changed

Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,14 +344,14 @@ Playground automatically compiles `.ts`, `.tsx`, and `.jsx` files using

The following compiler settings are used:

| Name | Value |
| ------------------------------------------------------------------------------------------ | -------- |
| [`target`](https://www.typescriptlang.org/tsconfig#target) | `ES2017` |
| [`module`](https://www.typescriptlang.org/tsconfig#module) | `ESNext` |
| [`moduleResolution`](https://www.typescriptlang.org/tsconfig#moduleResolution) | `node` |
| [`experimentalDecorators`](https://www.typescriptlang.org/tsconfig#experimentalDecorators) | `true` |
| [`allowJs`](https://www.typescriptlang.org/tsconfig#allowJs) | `true` |
| [`jsx`](https://www.typescriptlang.org/tsconfig#jsx) | `react` |
| Name | Value |
| ------------------------------------------------------------------------------------------ | ---------- |
| [`target`](https://www.typescriptlang.org/tsconfig#target) | `es2021` |
| [`module`](https://www.typescriptlang.org/tsconfig#module) | `esnext` |
| [`moduleResolution`](https://www.typescriptlang.org/tsconfig#moduleResolution) | `nodenext` |
| [`experimentalDecorators`](https://www.typescriptlang.org/tsconfig#experimentalDecorators) | `true` |
| [`allowJs`](https://www.typescriptlang.org/tsconfig#allowJs) | `true` |
| [`jsx`](https://www.typescriptlang.org/tsconfig#jsx) | `react` |

Note that when you import from another project module, the import
statement should use the `.js` extension (the same as you would do when running
Expand Down
181 changes: 5 additions & 176 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playground-elements",
"version": "0.16.3",
"version": "0.17.0",
"description": "Serverless coding environments for the web",
"homepage": "https://github.com/google/playground-elements#readme",
"repository": "github:google/playground-elements",
Expand Down Expand Up @@ -292,9 +292,7 @@
"rollup": "^3.2.5",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-lit-css": "^4.0.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"semver": "^7.3.5",
"tsc-watch": "^5.0.3",
"typescript": "~4.8.4",
"wireit": "^0.7.3-pre.3"
},
Expand Down
2 changes: 1 addition & 1 deletion src/shared/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@

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

0 comments on commit e6694b5

Please sign in to comment.