@x-oasis/noop 0.0.1 → 0.0.2
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/index.ts +1 -0
- package/package.json +7 -2
- package/.pnpm-debug.log +0 -22
- package/jest.config.js +0 -27
- package/tsconfig.build.json +0 -11
- package/tsconfig.json +0 -7
package/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as noop } from './src'
|
package/package.json
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@x-oasis/noop",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "noop function",
|
|
5
|
-
"main": "index.
|
|
5
|
+
"main": "index.ts",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist",
|
|
8
|
+
"index.ts",
|
|
9
|
+
"src"
|
|
10
|
+
],
|
|
6
11
|
"author": "",
|
|
7
12
|
"license": "ISC",
|
|
8
13
|
"scripts": {
|
package/.pnpm-debug.log
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"0 debug pnpm:scope": {
|
|
3
|
-
"selected": 1,
|
|
4
|
-
"workspacePrefix": "/Users/ryu/Documents/code/red/x-oasis"
|
|
5
|
-
},
|
|
6
|
-
"1 warn pnpm:global": "lifecycle The node binary used for scripts is /usr/local/bin/node but pnpm is using /usr/local/bin/node itself. Use the `--scripts-prepend-node-path` option to include the path for the node binary pnpm was executed with.",
|
|
7
|
-
"2 error pnpm": {
|
|
8
|
-
"errno": 2,
|
|
9
|
-
"code": "ELIFECYCLE",
|
|
10
|
-
"pkgid": "@x-oasis/noop@0.0.1",
|
|
11
|
-
"stage": "compile",
|
|
12
|
-
"script": "tsc -p tsconfig.build.json",
|
|
13
|
-
"pkgname": "@x-oasis/noop",
|
|
14
|
-
"err": {
|
|
15
|
-
"name": "pnpm",
|
|
16
|
-
"message": "@x-oasis/noop@0.0.1 compile: `tsc -p tsconfig.build.json`\nExit status 2",
|
|
17
|
-
"code": "ELIFECYCLE",
|
|
18
|
-
"stack": "pnpm: @x-oasis/noop@0.0.1 compile: `tsc -p tsconfig.build.json`\nExit status 2\n at EventEmitter.<anonymous> (/Users/ryu/.npm-global/lib/node_modules/pnpm/dist/pnpm.cjs:108415:20)\n at EventEmitter.emit (node:events:513:28)\n at ChildProcess.<anonymous> (/Users/ryu/.npm-global/lib/node_modules/pnpm/dist/pnpm.cjs:94981:18)\n at ChildProcess.emit (node:events:513:28)\n at maybeClose (node:internal/child_process:1093:16)\n at Process.ChildProcess._handle.onexit (node:internal/child_process:302:5)"
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
"3 warn pnpm:global": " Local package.json exists, but node_modules missing, did you mean to install?"
|
|
22
|
-
}
|
package/jest.config.js
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
preset: 'ts-jest',
|
|
3
|
-
testEnvironment: 'node',
|
|
4
|
-
// testMatch: ["**/src/__test__/*.test.ts"],
|
|
5
|
-
modulePathIgnorePatterns: ['dist'],
|
|
6
|
-
transform: {
|
|
7
|
-
"^.+\\.tsx?$": "ts-jest",
|
|
8
|
-
"^.+\\.(js|jsx)$": "babel-jest",
|
|
9
|
-
"node_modules/variables/.+\\.(j|t)sx?$": "babel-jest"
|
|
10
|
-
},
|
|
11
|
-
testRegex: "(/src/.*\\.(test|spec))\\.(jsx?|tsx?|ts|js)$",
|
|
12
|
-
transformIgnorePatterns: [
|
|
13
|
-
"node_modules/(?!(jest-)?react-native|react-(native|universal|navigation)-(.*)|@react-native-community/(.*)|@react-navigation/(.*)|bs-platform|@rootstrap/redux-tools)"
|
|
14
|
-
],
|
|
15
|
-
// setupFiles: [
|
|
16
|
-
// "./tests/__mocks__/index.js",
|
|
17
|
-
// "<rootDir>/node_modules/react-native-gesture-handler/jestSetup.js"
|
|
18
|
-
// ],
|
|
19
|
-
moduleFileExtensions: [
|
|
20
|
-
"ts",
|
|
21
|
-
"tsx",
|
|
22
|
-
"js",
|
|
23
|
-
"jsx",
|
|
24
|
-
"json",
|
|
25
|
-
"node"
|
|
26
|
-
]
|
|
27
|
-
};
|
package/tsconfig.build.json
DELETED