Skip to content

Commit

Permalink
chore: bump to 0.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Dec 27, 2021
1 parent d8097df commit 92affad
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bmp.yml
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
version: 0.1.11
version: 0.1.12
commit: 'chore: bump to %.%.%'
files:
README.md:
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
<img src="https://raw.githubusercontent.com/kt3k/packup/main/docs/logo-v2.svg" width="400" />

# packup v0.1.11
# packup v0.1.12

[![ci](https://github.com/kt3k/packup/actions/workflows/ci.yml/badge.svg)](https://github.com/kt3k/packup/actions/workflows/ci.yml)

Expand All @@ -18,7 18,7 @@
Install via deno.land/x:

```shell
deno run -A https://deno.land/x/[email protected].11/install.ts
deno run -A https://deno.land/x/[email protected].12/install.ts
```

Write HTML and JavaScript:
Expand Down Expand Up @@ -94,8 94,8 @@ If you want to use packup without installing globally, you can use the following
command.

```
deno run --allow-env --allow-read --allow-write --allow-net=deno.land https://deno.land/x/[email protected].11/ensure_esbuild_wasm.ts
deno run -A https://deno.land/x/[email protected].11/cli.ts <your parameters>
deno run --allow-env --allow-read --allow-write --allow-net=deno.land https://deno.land/x/[email protected].12/ensure_esbuild_wasm.ts
deno run -A https://deno.land/x/[email protected].12/cli.ts <your parameters>
```

The first command ensures the esbuild wasm installed on your machine. The second
Expand Down Expand Up @@ -123,6 123,7 @@ command is the actual entrypoint of the packup program.

# History

- 2021-12-27 v0.1.11 Add support of `<img>` `srcset` attribute and `<source>` tag. #39
- 2021-12-22 v0.1.11 Add support of image imports (in html). #33
- 2021-12-05 v0.1.10 Install wasm under `DENO_DIR` when it's specified. #31
- 2021-12-05 v0.1.9 Add logging related to sass.
Expand Down
2 changes: 1 addition & 1 deletion deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 24,4 @@ export { opn } from "https://raw.githubusercontent.com/hashrock/deno-opn/b358e4c
export { serve as serveIterable } from "https://deno.land/x/[email protected]/mod.ts";

export const NAME = "packup";
export const VERSION = "v0.1.11";
export const VERSION = "v0.1.12";
2 changes: 1 addition & 1 deletion docs/_includes/layout.njk
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 28,7 @@ menu:
</a>

<p class="mt-2 text-gray-800">
<a href="https://deno.land/x/[email protected].11" class="hover:underline" target="_blank">Latest version <strong>v0.1.11</strong></a>
<a href="https://deno.land/x/[email protected].12" class="hover:underline" target="_blank">Latest version <strong>v0.1.12</strong></a>
</p>

<ul class="mt-6 text-gray-800">
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 14,14 @@ You need [Deno](https://deno.land/) (>=1.10.3) installed.
You can install `packup` with the following command.

```sh
deno run -A https://deno.land/x/[email protected].11/install.ts
deno run -A https://deno.land/x/[email protected].12/install.ts
```

Then you'll have `packup` installed.

```sh
$ packup -v
packup v0.1.11
packup v0.1.12
```

## Basic Usage
Expand Down

0 comments on commit 92affad

Please sign in to comment.