quidproquo-testing 0.0.198 → 0.0.200
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/lib/esm/index.d.ts +1 -0
- package/lib/esm/index.js +1 -0
- package/package.json +9 -5
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const __PLACEHOLDER__ = 0;
|
package/lib/esm/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const __PLACEHOLDER__ = 0;
|
package/package.json
CHANGED
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quidproquo-testing",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.200",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/commonjs/index.js",
|
|
6
|
-
"
|
|
6
|
+
"module": "./lib/esm/index.js",
|
|
7
|
+
"types": "./lib/esm/index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
7
9
|
"files": [
|
|
8
10
|
"lib/**/*"
|
|
9
11
|
],
|
|
10
12
|
"scripts": {
|
|
11
13
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
14
|
"clean": "npx rimraf lib && npx rimraf node_modules",
|
|
13
|
-
"build": "npm run clean &&
|
|
14
|
-
"watch": "tsc -p tsconfig.
|
|
15
|
+
"build": "npm run clean && npm run build:esm && npm run build:cjs",
|
|
16
|
+
"watch": "tsc -p tsconfig.esm.json -w",
|
|
17
|
+
"build:cjs": "tsc -p tsconfig.commonjs.json",
|
|
18
|
+
"build:esm": "tsc -p tsconfig.esm.json"
|
|
15
19
|
},
|
|
16
20
|
"repository": {
|
|
17
21
|
"type": "git",
|
|
@@ -25,7 +29,7 @@
|
|
|
25
29
|
},
|
|
26
30
|
"homepage": "https://github.com/joe-coady/quidproquo#readme",
|
|
27
31
|
"devDependencies": {
|
|
28
|
-
"quidproquo-tsconfig": "0.0.
|
|
32
|
+
"quidproquo-tsconfig": "0.0.200",
|
|
29
33
|
"typescript": "^4.9.3"
|
|
30
34
|
}
|
|
31
35
|
}
|