@makano/rew 1.1.72 → 1.1.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/build.sh +3 -1
- package/meson.build +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Rew
|
|
|
12
12
|
<a href="https://www.npmjs.com/package/rayous"> <img src="https://img.shields.io/npm/v/@makano/rew?style=for-the-badge&logo=npm&color=b4befe&logoColor=9399b2&labelColor=181825" alt="npm version" /></a>
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
Rew is a simple lightweight coffeescript runtime, made to simply using coffescript and revive it
|
|
16
16
|
in the process.
|
|
17
17
|
|
|
18
18
|
## Getting Started
|
package/build.sh
CHANGED
|
@@ -3,4 +3,6 @@ opath=./bin/ui
|
|
|
3
3
|
if [ $1 ]; then
|
|
4
4
|
opath=$1
|
|
5
5
|
fi
|
|
6
|
-
g++ ./cpp/ui.cpp -o $opath `pkg-config --cflags --libs gtk+-3.0 webkit2gtk-4.0 libwebsockets jsoncpp`
|
|
6
|
+
# g++ ./cpp/ui.cpp -o $opath `pkg-config --cflags --libs gtk+-3.0 webkit2gtk-4.0 libwebsockets jsoncpp`
|
|
7
|
+
meson build
|
|
8
|
+
cd build && ninja && mv ./ui $opath && cd ../ && rm -r ./build
|
package/meson.build
CHANGED
|
@@ -7,7 +7,7 @@ webkit2gtk = dependency('webkit2gtk-4.0', method : 'pkg-config')
|
|
|
7
7
|
libwebsockets = dependency('libwebsockets', method : 'pkg-config')
|
|
8
8
|
jsoncpp = dependency('jsoncpp', method : 'pkg-config')
|
|
9
9
|
|
|
10
|
-
executable('
|
|
10
|
+
executable('ui',
|
|
11
11
|
'cpp/ui.cpp',
|
|
12
12
|
install : true,
|
|
13
13
|
dependencies : [gtk3, webkit2gtk, libwebsockets, jsoncpp])
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@makano/rew",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.73",
|
|
4
4
|
"description": "A simple coffescript runtime",
|
|
5
5
|
"main": "lib/rew/main.js",
|
|
6
6
|
"directories": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"type": "git",
|
|
25
25
|
"url": "git+https://github.com/kevinj045/rew.git"
|
|
26
26
|
},
|
|
27
|
-
"keywords": [],
|
|
27
|
+
"keywords": ["coffescript", "rew", "runtime"],
|
|
28
28
|
"author": "makano",
|
|
29
29
|
"license": "ISC",
|
|
30
30
|
"dependencies": {
|