Skip to content

Commit

Permalink
Release 0.0.3 version preview
Browse files Browse the repository at this point in the history
  • Loading branch information
DoctorRyner committed Jun 19, 2021
1 parent c8cf2f2 commit 23b1e17
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Eq.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package: sae
version: 0.0.2
version: 0.0.3
target: node

depends:
Expand Down
6 changes: 6 additions & 0 deletions docs/Usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,9 @@ Doest the same as `sae install-deps` but forcibly reinstalls every package. This
Example: `sae install`

Installs package in the system, this is also rarely needed since you are supposed to install packages through `sae`'s `sources` field

## yarn

Example: `sae yarn`

Build project, resolves npm dependencies (creates build/package.json) and installs npm dependencies
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sae",
"version": "0.0.2",
"version": "0.0.3",
"repository": "https://github.com/DoctorRyner/sae.git",
"author": "DoctorRyner <drryner@icloud.com>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion sae.ipkg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package sae
version = 0.0.2
version = 0.0.3

sourcedir = "src"

Expand Down
6 changes: 3 additions & 3 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ fi

SAE_URL=$([ "$OS" == "Darwin" ] \
&& ([ "$ARCH" == "arm64" ] \
&& echo "https://github.com/DoctorRyner/sae/releases/download/v0.0.2-fix2/sae-apple-silicon.zip" \
|| echo "https://github.com/DoctorRyner/sae/releases/download/v0.0.2-fix2/sae-mac.zip") \
|| echo "https://github.com/DoctorRyner/sae/releases/download/v0.0.2-fix2/sae-linux.zip")
&& echo "https://github.com/DoctorRyner/sae/releases/download/v0.0.3-preview/sae-apple-silicon.zip" \
|| echo "https://github.com/DoctorRyner/sae/releases/download/v0.0.3-preview/sae-mac.zip") \
|| echo "https://github.com/DoctorRyner/sae/releases/download/v0.0.3-preview/sae-linux.zip")

curl -L "$SAE_URL" > sae.zip
unzip sae.zip
Expand Down
2 changes: 1 addition & 1 deletion src/Sae/Info.idr
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module Sae.Info

export
version : String
version = "0.0.2"
version = "0.0.3"

0 comments on commit 23b1e17

Please sign in to comment.