react-native-cache-build-gitlab 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -12,9 +12,9 @@ GitLab Generic Package provider for [RockJS](https://rockjs.dev) with single pac
12
12
  ## Installation
13
13
 
14
14
  ```bash
15
- npm install @congtuandevmobile/react-native-cache-build-gitlab
15
+ npm install react-native-cache-build-gitlab
16
16
  # or
17
- yarn add @congtuandevmobile/react-native-cache-build-gitlab
17
+ yarn add react-native-cache-build-gitlab
18
18
  ```
19
19
 
20
20
  ## Usage
@@ -24,7 +24,7 @@ In your `rock.config.mjs`:
24
24
  ```javascript
25
25
  import { platformIOS } from "@rock-js/platform-ios";
26
26
  import { platformAndroid } from "@rock-js/platform-android";
27
- import { providerGitLab } from "@congtuandevmobile/react-native-cache-build-gitlab";
27
+ import { providerGitLab } from "react-native-cache-build-gitlab";
28
28
  import { pluginMetro } from "@rock-js/plugin-metro";
29
29
 
30
30
  export default {
@@ -89,7 +89,7 @@ build_android_cache:
89
89
 
90
90
  The official `@rock-js/provider-gitlab` creates **one package per fingerprint**, which can clutter the package registry.
91
91
 
92
- This provider stores **all builds in one package** (version `1.0.0`), using filename-based lookup instead of version-based lookup.
92
+ This provider stores **all builds in one package** (version `1.0.2`), using filename-based lookup instead of version-based lookup.
93
93
 
94
94
  ## License
95
95
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-cache-build-gitlab",
3
- "version": "1.0.2",
4
- "module": "dist/index.js",
3
+ "version": "1.0.3",
4
+ "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "types": "dist/index.d.ts",
7
7
  "files": [
@@ -11,7 +11,7 @@
11
11
  "scripts": {
12
12
  "clean": "rm -rf dist && rm -rf node_modules",
13
13
  "build": "bun tsc -p tsconfig.json",
14
- "publish-package": "bun npm publish"
14
+ "publish-package": "npm publish"
15
15
  },
16
16
  "author": "Nguyễn Công Tuấn",
17
17
  "homepage": "https://github.com/congtuandevmobile",