Skip to content

Commit 9d6163a

Browse files
committed
moved examples
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent aaf80cd commit 9d6163a

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

Diff for: .github/workflows/nodejs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ jobs:
337337
- parcel
338338
- webpack
339339
env:
340-
EXAMPLE_DIR: examples/web-${{ matrix.packer }}
340+
EXAMPLE_DIR: examples/web/${{ matrix.packer }}
341341
steps:
342342
- name: Checkout
343343
# see https://github.com/actions/checkout

Diff for: examples/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
* `node-typescript` showcases the usage in Node.js TypeScript
99
* [`example.cjs`](node-typescript/example.cjs) targets JavaScript, "commonjs" style - from TypeScript `^3.8 || ^4 || ^5`.
1010
* [`example.mjs`](node-typescript/example.mjs) targets JavaScript, "module" style - from TypeScript `^4 || ^5`.
11-
* `web-parcel` showcases the usage in web browser when compiled by [_Parcel_](https://parceljs.org/):
12-
* [`src/index.html`](web-parcel/src/index.html) will be compiled to
13-
[`dist/index.html`](web-parcel/dist/index.html) and runs in any web browser.
14-
* `web-webpack` showcases the usage in web browser when compiled by [_Webpack_](https://webpack.js.org/):
15-
* [`src/index.js`](web-webpack/src/index.js) will be compiled, so that it can be embedded by
16-
[`dist/index.html`](web-webpack/dist/index.html) and runs in any web browser.
11+
* `web/parcel` showcases the usage in web browser when compiled by [_Parcel_](https://parceljs.org/):
12+
* [`src/index.html`](web/parcel/src/index.html) will be compiled to
13+
[`dist/index.html`](web/parcel/dist/index.html) and runs in any web browser.
14+
* `web/webpack` showcases the usage in web browser when compiled by [_Webpack_](https://webpack.js.org/):
15+
* [`src/index.js`](web/webpack/src/index.js) will be compiled, so that it can be embedded by
16+
[`dist/index.html`](web/webpack/dist/index.html) and runs in any web browser.
1717

1818
## Data models
1919

Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
*
22
!/.gitignore
33
!/package.json
4-
!/src
4+
!/src/
55
!/src/**
File renamed without changes.
File renamed without changes.
File renamed without changes.

Diff for: examples/web-webpack/.gitignore renamed to examples/web/webpack/.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
!/.gitignore
33
!/package.json
44
!/webpack.json
5-
!/src
5+
!/src/
66
!/src/**
7-
!/dist
7+
!/dist/
88
!/dist/index.html
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)