Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and bennypowers committed Oct 17, 2021
1 parent 41cab01 commit ffa5e22
Show file tree
Hide file tree
Showing 12 changed files with 92 additions and 52 deletions.
33 changes: 0 additions & 33 deletions .changeset/sixty-mugs-doubt.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/tasty-pigs-begin.md

This file was deleted.

11 changes: 11 additions & 0 deletions packages/esbuild-plugin-lit-css/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# esbuild-plugin-lit-css

## 1.2.0

### Minor Changes

- 2b27339: Add a second parameter to the transform function which contains a `filePath` property, for use in error reporting, sourcemaps, etc.

### Patch Changes

- Updated dependencies [2b27339]
- @pwrs/lit-css@1.2.0

## 1.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/esbuild-plugin-lit-css/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "esbuild-plugin-lit-css",
"description": "import CSS files as tagged template literals",
"version": "1.1.0",
"version": "1.2.0",
"type": "module",
"main": "esbuild-plugin-lit-css.js",
"types": "esbuild-plugin-lit-css.d.ts",
Expand Down Expand Up @@ -32,7 +32,7 @@
"esbuild-plugin-lit-css.d.ts"
],
"dependencies": {
"@pwrs/lit-css": "^1.1.0"
"@pwrs/lit-css": "^1.2.0"
},
"peerDependencies": {
"esbuild": "^0.12.14"
Expand Down
43 changes: 43 additions & 0 deletions packages/lit-css-loader/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,48 @@
# Change Log

## 1.2.0

### Minor Changes

- 2b27339: Add a second parameter to the transform function which contains a `filePath` property, for use in error reporting, sourcemaps, etc.

### Patch Changes

- 2b27339: Fix `lit-css-loader` options which previously had to be wrapped in an object under `options.options`

### Before

```js
module: {
rules: [{
test: /\.css$/,
loader: 'lit-css-loader',
options: {
options: {
uglify: true,
},
},
}],
},
```

### After

```js
module: {
rules: [{
test: /\.css$/,
loader: 'lit-css-loader',
options: {
uglify: true,
},
}],
},
```

- Updated dependencies [2b27339]
- @pwrs/lit-css@1.2.0

## 1.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/lit-css-loader/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lit-css-loader",
"description": "Import CSS files as tagged template literals",
"version": "1.1.0",
"version": "1.2.0",
"type": "module",
"main": "lit-css-loader.js",
"types": "lit-css-loader.d.ts",
Expand Down Expand Up @@ -32,7 +32,7 @@
"lit-css-loader.d.ts"
],
"dependencies": {
"@pwrs/lit-css": "^1.1.0",
"@pwrs/lit-css": "^1.2.0",
"loader-utils": "^2.0.0"
}
}
6 changes: 6 additions & 0 deletions packages/lit-css/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @pwrs/lit-css

## 1.2.0

### Minor Changes

- 2b27339: Add a second parameter to the transform function which contains a `filePath` property, for use in error reporting, sourcemaps, etc.

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lit-css/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@pwrs/lit-css",
"description": "Import CSS files as css tagged-template literals",
"version": "1.1.0",
"version": "1.2.0",
"type": "module",
"main": "lit-css.js",
"types": "lit-css.d.ts",
Expand Down
11 changes: 11 additions & 0 deletions packages/rollup-plugin-lit-css/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# rollup-plugin-lit-css

## 3.2.0

### Minor Changes

- 2b27339: Add a second parameter to the transform function which contains a `filePath` property, for use in error reporting, sourcemaps, etc.

### Patch Changes

- Updated dependencies [2b27339]
- @pwrs/lit-css@1.2.0

## 3.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/rollup-plugin-lit-css/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rollup-plugin-lit-css",
"description": "Import CSS files as tagged template literals",
"version": "3.1.0",
"version": "3.2.0",
"type": "module",
"main": "rollup-plugin-lit-css.js",
"types": "rollup-plugin-lit-css.d.ts",
Expand Down Expand Up @@ -31,7 +31,7 @@
"rollup-plugin-lit-css.d.ts"
],
"dependencies": {
"@pwrs/lit-css": "^1.1.0",
"@pwrs/lit-css": "^1.2.0",
"rollup-pluginutils": "^2.8.2"
}
}
10 changes: 10 additions & 0 deletions test/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# test

## 1.0.6

### Patch Changes

- Updated dependencies [2b27339]
- Updated dependencies [2b27339]
- [email protected]
- [email protected]
- [email protected]

## 1.0.5

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"name": "test",
"private": true,
"type": "module",
"version": "1.0.5",
"version": "1.0.6",
"license": "MIT",
"dependencies": {
"esbuild-plugin-lit-css": "1.1.0",
"lit-css-loader": "1.1.0",
"rollup-plugin-lit-css": "3.1.0"
"esbuild-plugin-lit-css": "1.2.0",
"lit-css-loader": "1.2.0",
"rollup-plugin-lit-css": "3.2.0"
}
}

0 comments on commit ffa5e22

Please sign in to comment.