Skip to content

Commit 362cadd

Browse files
committed
Init commit
0 parents  commit 362cadd

File tree

12 files changed

+7642
-0
lines changed

12 files changed

+7642
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/node_modules/
2+
/build/
3+
4+
.DS_Store

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Get started
2+
3+
Install the dependencies...
4+
5+
```bash
6+
cd test-svelte-userscript
7+
npm install
8+
```
9+
10+
...then start [Rollup](https://rollupjs.org):
11+
12+
```bash
13+
npm run dev
14+
```
15+
16+
Install a script manager, e.g. [Tampermonkey](https://www.tampermonkey.net/), open it, create a new usercript and copy content of build/calculator.user.js file, and save it.
17+
18+
Navitage to [Google home page](https://www.google.com/) and enjoy the calculator.
19+
20+
# Building and running in production mode
21+
22+
To create an optimised version of the app:
23+
24+
```bash
25+
npm run build
26+
```

0 commit comments

Comments
 (0)