Skip to content

Commit 80d0123

Browse files
authored
Fix TS project references and update READMEs with changelog links (#151)
1 parent d173739 commit 80d0123

File tree

12 files changed

+16
-10
lines changed

12 files changed

+16
-10
lines changed

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
77
<p align="center">
88
<a href="https://github.com/magiclabs/magic-js/blob/master/LICENSE">License</a> ·
9+
<a href="https://github.com/magiclabs/magic-js/blob/master/CHANGELOG.md">Changelog</a> ·
910
<a href="https://github.com/magiclabs/magic-js/blob/master/CONTRIBUTING.md">Contributing Guide</a>
1011
</p>
1112

Diff for: packages/commons/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
> Exposes a listing of common public APIs from `@magic-sdk/provider` and `@magic-sdk/typings` to the platform-specific entry points (`magic-sdk` and `@magic-sdk/react-native`)
66
77
<p align="center">
8-
<a href="https://github.com/magiclabs/magic-js/blob/master/packages/public/LICENSE">License</a> ·
8+
<a href="https://github.com/magiclabs/magic-js/blob/master/packages/commons/LICENSE">License</a> ·
9+
<a href="https://github.com/magiclabs/magic-js/blob/master/packages/commons/CHANGELOG.md">Changelog</a> ·
910
<a href="https://github.com/magiclabs/magic-js/blob/master/CONTRIBUTING.md">Contributing Guide</a>
1011
</p>
1112

Diff for: packages/provider/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
77
<p align="center">
88
<a href="https://github.com/magiclabs/magic-js/blob/master/packages/provider/LICENSE">License</a> ·
9+
<a href="https://github.com/magiclabs/magic-js/blob/master/packages/provider/CHANGELOG.md">Changelog</a> ·
910
<a href="https://github.com/magiclabs/magic-js/blob/master/CONTRIBUTING.md">Contributing Guide</a>
1011
</p>
1112

Diff for: packages/react-native/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
77
<p align="center">
88
<a href="https://github.com/magiclabs/magic-js/blob/master/packages/react-native/LICENSE">License</a> ·
9+
<a href="https://github.com/magiclabs/magic-js/blob/master/packages/react-native/CHANGELOG.md">Changelog</a> ·
910
<a href="https://github.com/magiclabs/magic-js/blob/master/CONTRIBUTING.md">Contributing Guide</a>
1011
</p>
1112

Diff for: packages/types/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
77
<p align="center">
88
<a href="https://github.com/magiclabs/magic-js/blob/master/packages/types/LICENSE">License</a> ·
9+
<a href="https://github.com/magiclabs/magic-js/blob/master/packages/types/CHANGELOG.md">Changelog</a> ·
910
<a href="https://github.com/magiclabs/magic-js/blob/master/CONTRIBUTING.md">Contributing Guide</a>
1011
</p>
1112

Diff for: packages/web/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
77
<p align="center">
88
<a href="https://github.com/magiclabs/magic-js/blob/master/packages/web/LICENSE">License</a> ·
9+
<a href="https://github.com/magiclabs/magic-js/blob/master/packages/web/CHANGELOG.md">Changelog</a> ·
910
<a href="https://github.com/magiclabs/magic-js/blob/master/CONTRIBUTING.md">Contributing Guide</a>
1011
</p>
1112

Diff for: scripts/build.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
echo
4-
boxen --border-color cyan --dim-border --padding 1 "🏗 Building TypeScripts..."
4+
boxen --border-color cyan --dim-border --padding 1 "Building TypeScripts..."
55
echo
66

77
tsconfig_paths=$(echo -e $(yarn --silent paths tsconfig.json tsconfig.module.json))
@@ -16,7 +16,7 @@ echo "TypeScripts compiled."
1616
# ---------------------------------------------------------------------------- #
1717

1818
echo
19-
boxen --border-color cyan --dim-border --padding 1 "📦 Building CDN bundles..."
19+
boxen --border-color cyan --dim-border --padding 1 "Building CDN bundles..."
2020
echo
2121

2222
echo "You can safely ignore \`The 'this' keyword is equivalent to 'undefined'\` warnings"
@@ -27,7 +27,7 @@ yarn wsrun --serial $INIT_CWD/scripts/wsrun/build:cdn.sh
2727
# ---------------------------------------------------------------------------- #
2828

2929
echo
30-
boxen --border-color cyan --dim-border --padding 1 "🔗 Interpolating ENV variables..."
30+
boxen --border-color cyan --dim-border --padding 1 "Interpolating ENV variables..."
3131
echo
3232

3333
pkg_paths=$(echo -e $(yarn --silent paths))

Diff for: scripts/clean.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ fi
6363

6464
msg() {
6565
echo
66-
boxen --border-color cyan --dim-border --padding 1 "🧼 Cleaning $1..."
66+
boxen --border-color cyan --dim-border --padding 1 "Cleaning $1..."
6767
echo
6868
}
6969

Diff for: scripts/dev.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
echo
4-
boxen --border-color cyan --dim-border --padding 1 "🏗 Building for development..."
4+
boxen --border-color cyan --dim-border --padding 1 "Building for development..."
55
echo
66

77
pkg_paths=$(echo -e $(yarn --silent paths))

Diff for: scripts/lint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
echo
4-
boxen --border-color cyan --dim-border --padding 1 "🔎 Linting TypeScripts..."
4+
boxen --border-color cyan --dim-border --padding 1 "Linting TypeScripts..."
55
echo
66

77
yarn wsrun --stages eslint --fix "**/src/**/*.ts"

Diff for: scripts/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
echo
4-
boxen --border-color cyan --dim-border --padding 1 "🚦 Running tests..."
4+
boxen --border-color cyan --dim-border --padding 1 "Running tests..."
55
echo
66

77
yarn wsrun --serial $INIT_CWD/scripts/wsrun/test:unit.sh $@

Diff for: tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
{ "path": "./packages/provider/tsconfig.json" },
66
{ "path": "./packages/provider/tsconfig.module.json" },
77

8-
{ "path": "./packages/public/tsconfig.json" },
9-
{ "path": "./packages/public/tsconfig.module.json" },
8+
{ "path": "./packages/commons/tsconfig.json" },
9+
{ "path": "./packages/commons/tsconfig.module.json" },
1010

1111
{ "path": "./packages/react-native/tsconfig.json" },
1212
{ "path": "./packages/react-native/tsconfig.module.json" },

0 commit comments

Comments
 (0)