diff options
| author | Lucifer <[email protected]> | 2019-12-13 06:17:16 +0530 |
|---|---|---|
| committer | Lucifer <[email protected]> | 2019-12-13 06:17:16 +0530 |
| commit | c2b65bce031cd15ef384f7e0bec0b184f224482e (patch) | |
| tree | 8512b7d79e631b40ddf396d11dd26384f0805e46 | |
| parent | 78c054665dabe47ae04e1b48c2792885c5cf105a (diff) | |
| download | nativekit-c2b65bce031cd15ef384f7e0bec0b184f224482e.tar.xz nativekit-c2b65bce031cd15ef384f7e0bec0b184f224482e.zip | |
Basics
Added Basic directory structure, modified package.json and added a small readme
| -rw-r--r-- | README.md | 11 | ||||
| -rw-r--r-- | dist/mac/all.css | 0 | ||||
| -rw-r--r-- | dist/windows/all.css | 0 | ||||
| -rw-r--r-- | package.json | 4 | ||||
| -rw-r--r-- | scripts/nativeui.js | 0 |
5 files changed, 13 insertions, 2 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..27a83e7 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# Native Kit + +<div style="background-color:darkred; padding: 10px 5px; color: white; font-size: 14px; font-weight: 300; border-radius: 3px">Still in development. Please don't clone this repository.</div> + +Native is a new way to build Electron apps for macOS and Windows with all the native looks for the different operating systems. + +This kit would soon host different components for each of the operating systems, a website and a detailed documentation. + +Stay tuned. + +If you want to contribute then that information would also be updated shortly.
\ No newline at end of file diff --git a/dist/mac/all.css b/dist/mac/all.css new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/dist/mac/all.css diff --git a/dist/windows/all.css b/dist/windows/all.css new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/dist/windows/all.css diff --git a/package.json b/package.json index f72cd07..8cf36d9 100644 --- a/package.json +++ b/package.json @@ -2,9 +2,9 @@ "name": "nativekit", "version": "0.1.0", "description": "Native UI Kit for Electron Framework", - "main": "index.js", "scripts": { - "test": "electron ." + "start-mac-template": "electron templates/mac", + "start-win-template": "electron templates/win" }, "repository": { "type": "git", diff --git a/scripts/nativeui.js b/scripts/nativeui.js new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/scripts/nativeui.js |
