Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yefim/bazel-typescript-examples
A collection of TypeScript code built by Bazel
https://github.com/yefim/bazel-typescript-examples
bazel bazel-examples typescript
Last synced: about 9 hours ago
JSON representation
A collection of TypeScript code built by Bazel
- Host: GitHub
- URL: https://github.com/yefim/bazel-typescript-examples
- Owner: yefim
- Created: 2019-04-09T23:32:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-22T06:32:20.000Z (over 2 years ago)
- Last Synced: 2024-04-15T03:17:10.106Z (7 months ago)
- Topics: bazel, bazel-examples, typescript
- Language: Python
- Size: 41 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A collection of TypeScript code built by Bazel
================================================## How to build yourself
### TypeScript binary with npm package
The example outputs an executable to run on any machine with Node installed.
``` bash
cd ts-binary-with-npm-package/
npm install
npm run build
node bazel-bin/app.js
```### TypeScript web bundle with npm package
The example uses jQuery and lodash.
``` bash
cd ts-web-bundle-with-npm-package/
npm install
npm run build
open index.html
```