-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: update package.json * fix: .babelrc * feat: eslint * feat: webpack setup * fix: remove package-lock.json * fix: format index.html * fix: lint sntools * fix: add globals to eslint config * fix: index.html title * fix: replace moment with dayjs, dev server, and code improvements * fix: update README * chore: build Co-authored-by: Johnny Almonte <[email protected]>
- Loading branch information
Showing
18 changed files
with
5,642 additions
and
6,690 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,3 +1,5 @@ | ||
{ | ||
"presets": ["env"] | ||
"presets": [ | ||
"@babel/preset-env" | ||
] | ||
} |
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,5 @@ | ||
node_modules/** | ||
**/*.css | ||
**/*.html | ||
dist/** | ||
webpack.* |
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,17 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"node": true, | ||
"es6": true | ||
}, | ||
"extends": [ | ||
"@standardnotes/eslint-config-extensions" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": 11 | ||
}, | ||
"globals": { | ||
"ActiveXObject": true, | ||
"CDATASection": true | ||
} | ||
} |
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,3 +1,4 @@ | ||
node_modules | ||
bower_components | ||
.DS_Store | ||
dist/index.html |
This file was deleted.
Oops, something went wrong.
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,10 @@ | ||
# sntools | ||
|
||
## Development | ||
|
||
To run locally: | ||
|
||
1. Clone the project | ||
2. run `npm install` | ||
2. run `grunt` | ||
3. Open index.html to test. | ||
2. Run `yarn` to install dependencies | ||
2. Run `yarn start` to start dev server | ||
3. Open [http://localhost:8081/](http://localhost:8081) |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.