@formatjs/cli-native-linux-arm64-musl 1.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.
Files changed (3) hide show
  1. package/README.md +4 -0
  2. package/index.js +5 -0
  3. package/package.json +32 -0
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # @formatjs/cli-native-linux-arm64-musl
2
+
3
+ This is a placeholder bootstrap package for setting up npm trusted publishing.
4
+ Install a later version for the real FormatJS CLI Linux arm64 musl native binding.
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ 'use strict'
2
+
3
+ throw new Error(
4
+ '@formatjs/cli-native-linux-arm64-musl@1.0.0 is a placeholder bootstrap package. Upgrade to a later version for the native binding.'
5
+ )
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@formatjs/cli-native-linux-arm64-musl",
3
+ "version": "1.0.0",
4
+ "description": "Placeholder bootstrap package for the FormatJS CLI Linux arm64 musl native binding.",
5
+ "license": "MIT",
6
+ "author": "Long Ho <holevietlong@gmail.com>",
7
+ "homepage": "https://github.com/formatjs/formatjs",
8
+ "bugs": {
9
+ "url": "https://github.com/formatjs/formatjs/issues"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/formatjs/formatjs.git"
14
+ },
15
+ "os": [
16
+ "linux"
17
+ ],
18
+ "cpu": [
19
+ "arm64"
20
+ ],
21
+ "libc": [
22
+ "musl"
23
+ ],
24
+ "main": "index.js",
25
+ "exports": {
26
+ ".": "./index.js"
27
+ },
28
+ "files": [
29
+ "index.js",
30
+ "README.md"
31
+ ]
32
+ }