@brightlayer-ui/react-native-template-blank-typescript 3.0.0-alpha.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +61 -0
- package/package.json +2 -2
- package/template/Gemfile.lock +3 -1
- package/template/_gitignore +74 -0
- package/template/jest.config.js +9 -0
- package/template/jestSetupFile.js +4 -0
- package/template/package.json +1 -0
- package/template/yarn.lock +5 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## v3.0.0 (June 5, 2024)
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Update to build with React Native 0.73.
|
|
8
|
+
- Updated the templates to use React Native CLI
|
|
9
|
+
|
|
10
|
+
## v2.1.0 (November 1, 2022)
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Update to build with React Native 0.70.
|
|
15
|
+
|
|
16
|
+
## v2.0.0 (December 16, 2021)
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Changed package namespace from `@pxblue` to `@brightlayer-ui`.
|
|
21
|
+
|
|
22
|
+
## Package Migration Notice
|
|
23
|
+
|
|
24
|
+
Previous versions listed after this indicator refer to our deprecated `@pxblue` packages.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## v2.0.0 (November 3, 2021)
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
|
|
32
|
+
- Updated to use latest APIs from `@pxblue/react-native-components`.
|
|
33
|
+
|
|
34
|
+
## v1.3.1 (October 1, 2021)
|
|
35
|
+
|
|
36
|
+
### Fixed
|
|
37
|
+
|
|
38
|
+
- Added dependency for `@pxblue/react-native-vector-icons`
|
|
39
|
+
|
|
40
|
+
## v1.3.0 (September 30, 2021)
|
|
41
|
+
|
|
42
|
+
### Changed
|
|
43
|
+
- Upgrade PX Blue packages
|
|
44
|
+
|
|
45
|
+
## v1.2.0 (July 26, 2021)
|
|
46
|
+
|
|
47
|
+
### Changed
|
|
48
|
+
- Updated version of react-native-modal dependency to 12.0.2
|
|
49
|
+
|
|
50
|
+
## v1.1.0 (March 31, 2021)
|
|
51
|
+
|
|
52
|
+
### Changed
|
|
53
|
+
- Updated dependencies to use latest packages.
|
|
54
|
+
|
|
55
|
+
### Fixed
|
|
56
|
+
- Jest configuration allows default tests to pass.
|
|
57
|
+
|
|
58
|
+
## v1.0.0 (March 1, 2021)
|
|
59
|
+
|
|
60
|
+
### Added
|
|
61
|
+
- Initial blank template for TypeScript projects
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightlayer-ui/react-native-template-blank-typescript",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"author": "brightlayer-ui <brightlayer-ui@eaton.com>",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react native",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"Brightlayer UI",
|
|
10
10
|
"cli"
|
|
11
11
|
],
|
|
12
|
-
"description": "The base template for React Native projects created with the
|
|
12
|
+
"description": "The base template for React Native projects created with the React Native CLI.",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
15
|
"url": "https://github.com/etn-ccis/blui-react-native-cli-templates.git"
|
package/template/Gemfile.lock
CHANGED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# OSX
|
|
2
|
+
#
|
|
3
|
+
.DS_Store
|
|
4
|
+
|
|
5
|
+
# Xcode
|
|
6
|
+
#
|
|
7
|
+
build/
|
|
8
|
+
*.pbxuser
|
|
9
|
+
!default.pbxuser
|
|
10
|
+
*.mode1v3
|
|
11
|
+
!default.mode1v3
|
|
12
|
+
*.mode2v3
|
|
13
|
+
!default.mode2v3
|
|
14
|
+
*.perspectivev3
|
|
15
|
+
!default.perspectivev3
|
|
16
|
+
xcuserdata
|
|
17
|
+
*.xccheckout
|
|
18
|
+
*.moved-aside
|
|
19
|
+
DerivedData
|
|
20
|
+
*.hmap
|
|
21
|
+
*.ipa
|
|
22
|
+
*.xcuserstate
|
|
23
|
+
**/.xcode.env.local
|
|
24
|
+
|
|
25
|
+
# Android/IntelliJ
|
|
26
|
+
#
|
|
27
|
+
build/
|
|
28
|
+
.idea
|
|
29
|
+
.gradle
|
|
30
|
+
local.properties
|
|
31
|
+
*.iml
|
|
32
|
+
*.hprof
|
|
33
|
+
.cxx/
|
|
34
|
+
*.keystore
|
|
35
|
+
!debug.keystore
|
|
36
|
+
|
|
37
|
+
# node.js
|
|
38
|
+
#
|
|
39
|
+
node_modules/
|
|
40
|
+
npm-debug.log
|
|
41
|
+
yarn-error.log
|
|
42
|
+
|
|
43
|
+
# fastlane
|
|
44
|
+
#
|
|
45
|
+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
|
|
46
|
+
# screenshots whenever they are needed.
|
|
47
|
+
# For more information about the recommended setup visit:
|
|
48
|
+
# https://docs.fastlane.tools/best-practices/source-control/
|
|
49
|
+
|
|
50
|
+
**/fastlane/report.xml
|
|
51
|
+
**/fastlane/Preview.html
|
|
52
|
+
**/fastlane/screenshots
|
|
53
|
+
**/fastlane/test_output
|
|
54
|
+
|
|
55
|
+
# Bundle artifact
|
|
56
|
+
*.jsbundle
|
|
57
|
+
|
|
58
|
+
# Ruby / CocoaPods
|
|
59
|
+
**/Pods/
|
|
60
|
+
/vendor/bundle/
|
|
61
|
+
|
|
62
|
+
# Temporary files created by Metro to check the health of the file watcher
|
|
63
|
+
.metro-health-check*
|
|
64
|
+
|
|
65
|
+
# testing
|
|
66
|
+
/coverage
|
|
67
|
+
|
|
68
|
+
# Yarn
|
|
69
|
+
.yarn/*
|
|
70
|
+
!.yarn/patches
|
|
71
|
+
!.yarn/plugins
|
|
72
|
+
!.yarn/releases
|
|
73
|
+
!.yarn/sdks
|
|
74
|
+
!.yarn/versions
|
package/template/jest.config.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
preset: 'react-native',
|
|
3
|
+
transformIgnorePatterns: [
|
|
4
|
+
'node_modules/(?!(|react-native|@react-native/*|@brightlayer-ui/react-native-components|react-native-vector-icons|react-native-reanimated|react-native-animatable|react-native-safe-area-context|react-native-collapsible|react-native-modal|@react-native/polyfills|react-native-status-bar-height)/)',
|
|
5
|
+
],
|
|
6
|
+
setupFiles: ['./jestSetupFile.js'],
|
|
7
|
+
moduleNameMapper: {
|
|
8
|
+
'\\.svg': '<rootDir>/__mocks__/svgMock.js',
|
|
9
|
+
'.+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub',
|
|
10
|
+
'\\.(css|less)$': 'identity-obj-proxy',
|
|
11
|
+
},
|
|
3
12
|
};
|
package/template/package.json
CHANGED
package/template/yarn.lock
CHANGED
|
@@ -4755,6 +4755,11 @@ jest-snapshot@^29.7.0:
|
|
|
4755
4755
|
pretty-format "^29.7.0"
|
|
4756
4756
|
semver "^7.5.3"
|
|
4757
4757
|
|
|
4758
|
+
jest-transform-stub@^2.0.0:
|
|
4759
|
+
version "2.0.0"
|
|
4760
|
+
resolved "https://registry.yarnpkg.com/jest-transform-stub/-/jest-transform-stub-2.0.0.tgz#19018b0851f7568972147a5d60074b55f0225a7d"
|
|
4761
|
+
integrity sha512-lspHaCRx/mBbnm3h4uMMS3R5aZzMwyNpNIJLXj4cEsV0mIUtS4IjYJLSoyjRCtnxb6RIGJ4NL2quZzfIeNhbkg==
|
|
4762
|
+
|
|
4758
4763
|
jest-util@^29.7.0:
|
|
4759
4764
|
version "29.7.0"
|
|
4760
4765
|
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc"
|