Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions integration-tests/file-system/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
app
.gren
node_modules/
17 changes: 17 additions & 0 deletions integration-tests/file-system/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
KERNEL_SOURCES := $(wildcard ../../src/Gren/Kernel/*.js)

bin/app: Makefile gren.json src/Main.gren $(KERNEL_SOURCES)
gren make --optimize Main --output=bin/app

.PHONY: test
test: bin/app node_modules
npm test

node_modules: package.json package-lock.json
npm ci

.PHONY: clean
clean:
rm -rf .gren
rm -rf node_modules
rm bin/app
Empty file.
17 changes: 17 additions & 0 deletions integration-tests/file-system/gren.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "application",
"platform": "node",
"source-directories": [
"src"
],
"gren-version": "0.6.5",
"dependencies": {
"direct": {
"gren-lang/core": "7.0.0",
"gren-lang/node": "local:../.."
},
"indirect": {
"gren-lang/url": "6.0.0"
}
}
}
Binary file not shown.
Binary file not shown.
Loading
Loading