-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
10 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
|
||
|
@@ -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: | ||
|
@@ -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 | ||
|
@@ -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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|