Skip to content
This repository was archived by the owner on Feb 20, 2023. It is now read-only.

Feature fix gradle #588

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
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
17 changes: 17 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# editorconfig.org
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.{html,css,less,json,xml,jade}]
indent_style = space
indent_size = 2

[{M,m}akefile]
indent_style = tab
38 changes: 32 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,41 @@ node_modules
/android/build
/android/RCTWeChat.iml

# ios
# iOS
ios/build

# OSX
#
.DS_Store

# Xcode
#
build/
DerivedData/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
Pods/
*.xcuserstate
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.dSYM.zip
*.dSYM
*.xcuserstate
project.xcworkspace


# Android/IntelliJ
build/
.idea
.gradle
local.properties
*.iml


# outputs
/lib
7 changes: 0 additions & 7 deletions .npmignore

This file was deleted.

7 changes: 7 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
semi: true,
trailingComma: 'all',
singleQuote: true,
printWidth: 100,
arrowParens: 'always',
};
38 changes: 0 additions & 38 deletions .travis.yml

This file was deleted.

17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.0.1](https://github.com/shm-open/react-native-wechat/compare/v1.0.0...v1.0.1) (2021-01-29)

## 1.0.0 (2021-01-29)


### Features

* wechat库重构优化 ([523e13f](https://github.com/shm-open/react-native-wechat/commit/523e13f1f452c8448825abd6cb02290eb83b04db))


### Bug Fixes

* **example:** upgrade the example project to RN 0.60 ([#507](https://github.com/shm-open/react-native-wechat/issues/507)) ([138f4f8](https://github.com/shm-open/react-native-wechat/commit/138f4f8edac0edf9147ca139c4452cef62919260))
4 changes: 3 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
MIT License

Copyright (c) 2017 Yazhong Liu
Copyright (c) 2021-present shihuimiao

Copyright (c) 2017-2020 Yazhong Liu

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
27 changes: 0 additions & 27 deletions RCTWeChat.podspec

This file was deleted.

Loading