appstage 0.2.2 → 0.2.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.
package/dist/index.cjs CHANGED
@@ -1,3 +1,5 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
+
1
3
  var __create = Object.create;
2
4
  var __defProp = Object.defineProperty;
3
5
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appstage",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -13,7 +13,7 @@
13
13
  "compile-bin": "esbuild src/scripts/bin.ts --bundle --outfile=dist/bin.js --platform=node --external:esbuild --format=esm",
14
14
  "preversion": "npx npm-run-all shape compile-bin",
15
15
  "shape": "npx codeshape",
16
- "typecheck": "npx codeshape --typecheck-only"
16
+ "typecheck": "npx codeshape typecheck"
17
17
  },
18
18
  "repository": {
19
19
  "type": "git",
@@ -15,3 +15,5 @@ declare module "*.html" {
15
15
 
16
16
  export default content;
17
17
  }
18
+
19
+ declare module "*.css";
package/tsconfig.json CHANGED
@@ -5,6 +5,7 @@
5
5
  "emitDeclarationOnly": true,
6
6
  "outDir": "dist",
7
7
  "lib": ["ESNext"],
8
+ "types": ["node", "express"],
8
9
  "target": "ESNext",
9
10
  "module": "nodenext",
10
11
  "moduleResolution": "nodenext",