Remove accidentally included files in npm package
The 0.11.0-rc was bloated by lots of unnecessary build products and other miscellaneous files.
This commit is contained in:
parent
72675f6658
commit
5d872d6233
|
@ -1 +1,6 @@
|
|||
*.orig
|
||||
|
||||
/changelog-header.sh
|
||||
/publish.sh
|
||||
/set-version.sh
|
||||
/test.sh
|
||||
|
|
|
@ -78,6 +78,9 @@ confirm "Are you sure you want to publish $VERSION?" || die "Aborted publishing
|
|||
# This should fail if this tag already exists.
|
||||
git tag "v$VERSION"
|
||||
|
||||
# Delete Android build directory so no stale files are accidentally included.
|
||||
rm -rf react-native/android/build
|
||||
|
||||
# Publish to npm, informing the prepublish script to build Android modules.
|
||||
echo "Publishing $VERSION to npm..."
|
||||
PRERELEASE=$(grep -Eio '[a-z]+' <<< "$VERSION")
|
||||
|
|
|
@ -1,7 +1,11 @@
|
|||
*.orig
|
||||
|
||||
object-store/external/catch
|
||||
object-store/external/pegtl/Makefile
|
||||
object-store/external/pegtl/examples
|
||||
object-store/external/pegtl/unit_tests
|
||||
object-store/tests
|
||||
/object-store/**/*.cmake
|
||||
/object-store/**/*.dylib
|
||||
/object-store/**/*.sh
|
||||
/object-store/**/CMake*
|
||||
/object-store/**/Makefile
|
||||
/object-store/external/catch/
|
||||
/object-store/external/pegtl/examples/
|
||||
/object-store/external/pegtl/unit_tests/
|
||||
/object-store/tests/
|
||||
|
|
Loading…
Reference in New Issue