Skip to content

Commit

Permalink
rm firejs and replaced it with firejsx
Browse files Browse the repository at this point in the history
  • Loading branch information
aniketfuryrocks committed Oct 31, 2020
1 parent e0d57a7 commit 9df3ce9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ Only the **latest version** shall be supported for fixes

#### Reporting a Vulnerability

Create an [issue](https://github.com/eAdded/FireJS/issues) with the **bug** label. If the vulnerability is very very important and fatal add the **urgent** tag to it. Unnecessary addition of the **urgent** tag can result in the termination of the issue.
Create an [issue](https://github.com/eAdded/FireJSX/issues) with the **bug** label. If the vulnerability is very-very important and fatal add the **urgent** tag to it. Unnecessary addition of the **urgent** tag can result in the termination of the issue.

**Issues** can take a 1 - 2 days or more according to the level and difficulty of the request.
6 changes: 3 additions & 3 deletions src/Server.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {join} from "path"
import FireJS, {$} from "./SSB"
import FireJSX, {$} from "./SSB"
import * as express from "express";
import * as webpackHot from "webpack-hot-middleware"
import * as mime from "mime"
Expand All @@ -11,9 +11,9 @@ export interface devServerConfig {

export default class {
private readonly $: $
private readonly app: FireJS;
private readonly app: FireJSX;

constructor(app: FireJS) {
constructor(app: FireJSX) {
this.app = app;
this.$ = app.$;
}
Expand Down

0 comments on commit 9df3ce9

Please sign in to comment.