Skip to content

Commit cbb9d61

Browse files
committed
remove use of native classes
1 parent 0fe4d68 commit cbb9d61

6 files changed

Lines changed: 275 additions & 522 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

README.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
1-
@kaoscript/runtime
1+
[@kaoscript/runtime](https://github.com/kaoscript/runtime)
22
=================================================================
33

4-
*@kaoscript/runtime* provides the runtime for Kaoscript
4+
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
5+
6+
The default runtime for **kaoscript**.
7+
8+
Dodumentation is available at [kaoscript](https://github.com/kaoscript/kaoscript).
9+
10+
Changelog
11+
---------
12+
13+
### 0.2.0
14+
15+
- remove use of native classes
16+
- move classes methods into the `Helper` object
17+
18+
### 0.1.0
19+
20+
- initial release
521

622
License
723
-------

build/runtime.js

Lines changed: 0 additions & 300 deletions
This file was deleted.

package.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kaoscript/runtime",
3-
"description": "Runtime for Kaoscript",
4-
"version": "0.1.0",
3+
"description": "The default runtime for kaoscript",
4+
"version": "0.2.0",
55
"author": {
66
"name": "Baptiste Augrain",
77
"email": "daiyam@zokugun.org"
@@ -19,7 +19,10 @@
1919
"url": "http://www.opensource.org/licenses/mit-license.php"
2020
}
2121
],
22-
"main": "build/runtime.js",
22+
"engines": {
23+
"node": ">= 6.0.0"
24+
},
25+
"main": "src/runtime.js",
2326
"files": [
2427
"build",
2528
"src"
@@ -28,10 +31,6 @@
2831
},
2932
"devDependencies": {
3033
},
31-
"engines": {
32-
"node": ">= 6.0.0"
33-
},
34-
"kaoscript": {
35-
"main": "src/runtime.ks"
34+
"scripts": {
3635
}
3736
}

0 commit comments

Comments
 (0)