-
-
Notifications
You must be signed in to change notification settings - Fork 11
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
1 parent
1495375
commit fd6e8d3
Showing
3 changed files
with
86 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
## 0.9.3 (2019-02-14) | ||
|
||
### Bug Fixes | ||
|
||
- **app:** resolve /website in packaged app | ||
([c11483a](https://github.com/JamieMason/astexplorer.app/commit/c11483a)) | ||
- **app:** stop watcher before attempting to quit | ||
([74e9ff8](https://github.com/JamieMason/astexplorer.app/commit/74e9ff8)) | ||
- **app:** stop watcher when attempting to quit | ||
([0251d18](https://github.com/JamieMason/astexplorer.app/commit/0251d18)) | ||
|
||
### Features | ||
|
||
- **app:** add menu to import source & transform files | ||
([878e12f](https://github.com/JamieMason/astexplorer.app/commit/878e12f)) | ||
- **app:** add name and icons to app | ||
([710e2e9](https://github.com/JamieMason/astexplorer.app/commit/710e2e9)) | ||
- **app:** add support for modules in transforms | ||
([215f49b](https://github.com/JamieMason/astexplorer.app/commit/215f49b)) | ||
- **app:** disable file drop n/a to desktop app | ||
([44976c6](https://github.com/JamieMason/astexplorer.app/commit/44976c6)) | ||
- **app:** display astexplorer UI in electron | ||
([a2f1928](https://github.com/JamieMason/astexplorer.app/commit/a2f1928)) | ||
- **app:** hide menu items n/a to desktop app | ||
([ac7f3f8](https://github.com/JamieMason/astexplorer.app/commit/ac7f3f8)) | ||
- **app:** inject script to set default settings | ||
([aeac1d2](https://github.com/JamieMason/astexplorer.app/commit/aeac1d2)) | ||
- **app:** load initial source from disk | ||
([ffd0e53](https://github.com/JamieMason/astexplorer.app/commit/ffd0e53)) | ||
- **app:** update ui when code/transform changes on disk | ||
([a89207c](https://github.com/JamieMason/astexplorer.app/commit/a89207c)) |
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# astexplorer.app | ||
|
||
https://astexplorer.net with ES Modules support and Hot Reloading | ||
|
||
## Installation | ||
|
||
This is a [Node.js](https://nodejs.org/) module available through the | ||
[npm registry](https://www.npmjs.com/). It can be installed using the | ||
[`npm`](https://docs.npmjs.com/getting-started/installing-npm-packages-locally) | ||
or [`yarn`](https://yarnpkg.com/en/) command line tools. | ||
|
||
```sh | ||
npm install astexplorer.app --save | ||
``` | ||
|
||
## Dependencies | ||
|
||
- [chokidar](https://ghub.io/chokidar): A neat wrapper around node.js fs.watch / | ||
fs.watchFile / fsevents. | ||
- [electron-compile](https://ghub.io/electron-compile): Electron supporting | ||
package to compile JS and CSS in Electron applications | ||
- [electron-squirrel-startup](https://ghub.io/electron-squirrel-startup): | ||
Default Squirrel.Windows event handler for your Electron apps. | ||
- [memory-fs](https://ghub.io/memory-fs): A simple in-memory filesystem. Holds | ||
data in a javascript object. | ||
- [rollup](https://ghub.io/rollup): Next-generation ES module bundler | ||
|
||
## Dev Dependencies | ||
|
||
- [babel-plugin-transform-async-to-generator](https://ghub.io/babel-plugin-transform-async-to-generator): | ||
Turn async functions into ES2015 generators | ||
- [babel-preset-env](https://ghub.io/babel-preset-env): A Babel preset for each | ||
environment. | ||
- [babel-preset-react](https://ghub.io/babel-preset-react): Babel preset for all | ||
React plugins. | ||
- [electron-forge](https://ghub.io/electron-forge): A complete tool for building | ||
modern Electron applications | ||
- [electron-prebuilt-compile](https://ghub.io/electron-prebuilt-compile): | ||
electron-prebuilt that automatically understands Babel + React + LESS | ||
- [eslint](https://ghub.io/eslint): An AST-based pattern checker for JavaScript. | ||
- [eslint-config-airbnb](https://ghub.io/eslint-config-airbnb): Airbnb's | ||
ESLint config, following our styleguide | ||
- [eslint-plugin-import](https://ghub.io/eslint-plugin-import): Import with | ||
sanity. | ||
- [eslint-plugin-jsx-a11y](https://ghub.io/eslint-plugin-jsx-a11y): Static AST | ||
checker for accessibility rules on JSX elements. | ||
- [eslint-plugin-react](https://ghub.io/eslint-plugin-react): React specific | ||
linting rules for ESLint | ||
- [rimraf](https://ghub.io/rimraf): A deep deletion module for node (like | ||
`rm -rf`) | ||
|
||
## License | ||
|
||
MIT |
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