Skip to content
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.

Commit

Permalink
Merge pull request #34 from carvinlo/patch-1
Browse files Browse the repository at this point in the history
Update index.ts
  • Loading branch information
FlorianRappl committed May 25, 2021
2 parents 8e41e52 + 38d6dd9 commit b5f0d3e
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Piral Webpack Tools Changelog

## 0.6.8 (May 25, 2021)

* Fixed `v0` bannerSuffix logic.

## 0.6.7 (May 5, 2021)

* Improved wiring up `html-webpack-plugin`
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.6.6"
"version": "0.6.8"
}
5 changes: 3 additions & 2 deletions packages/html5-entry-webpack-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "html5-entry-webpack-plugin",
"version": "0.6.6",
"version": "0.6.8",
"description": "Webpack plugin for allowing HTML files as entry modules.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -36,5 +36,6 @@
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"html-webpack-plugin": "^4.2.0"
}
},
"gitHead": "d8766113afb41e6962a01b71121403c979d5a803"
}
5 changes: 3 additions & 2 deletions packages/import-maps-webpack-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "import-maps-webpack-plugin",
"version": "0.6.6",
"version": "0.6.8",
"description": "A plugin for providing static import maps support to Webpack.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -37,5 +37,6 @@
},
"dependencies": {
"webpack-virtual-modules": "^0.3.0"
}
},
"gitHead": "d8766113afb41e6962a01b71121403c979d5a803"
}
5 changes: 3 additions & 2 deletions packages/parcel-codegen-loader/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "parcel-codegen-loader",
"version": "0.6.6",
"version": "0.6.8",
"description": "A loader for .codegen files to auto-generate modules on the fly.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -35,5 +35,6 @@
"dependencies": {
"loader-utils": "^2.0.0",
"schema-utils": "^2.6.5"
}
},
"gitHead": "d8766113afb41e6962a01b71121403c979d5a803"
}
4 changes: 2 additions & 2 deletions packages/pilet-webpack-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pilet-webpack-plugin",
"version": "0.6.6",
"version": "0.6.8",
"description": "Webpack plugin for generating a valid pilet bundle.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -31,5 +31,5 @@
"devDependencies": {
"webpack": "4.42.0"
},
"dependencies": {}
"gitHead": "d8766113afb41e6962a01b71121403c979d5a803"
}
2 changes: 1 addition & 1 deletion packages/pilet-webpack-plugin/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class PiletWebpackPlugin implements Plugin {
];

if (schema !== 'none') {
const bannerSuffix = schema ? `1(${jsonpFunction})` : `0`;
const bannerSuffix = schema === 'v1' ? `1(${jsonpFunction})` : `0`;

plugins.push(
new BannerPlugin({
Expand Down
4 changes: 2 additions & 2 deletions packages/piral-instance-webpack-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "piral-instance-webpack-plugin",
"version": "0.6.6",
"version": "0.6.8",
"description": "Webpack plugin for generating a valid Piral instance bundle.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -31,5 +31,5 @@
"devDependencies": {
"webpack": "4.42.0"
},
"dependencies": {}
"gitHead": "d8766113afb41e6962a01b71121403c979d5a803"
}

0 comments on commit b5f0d3e

Please sign in to comment.