@akanjs/cli 0.9.3 → 0.9.5

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.
@@ -0,0 +1,5 @@
1
+ {
2
+ "type": "module",
3
+ "name": "@<%= appName %>",
4
+ "version": "0.0.1"
5
+ }
@@ -1,10 +1,8 @@
1
- //! will be replaced with akan.config.ts
2
- const akanjsPrefix = process.env.USE_AKANJS_PKGS === "true" ? "../../pkgs/" : "";
3
- const { withBase } = require(`${akanjsPrefix}@akanjs/config/postcss.config.base`);
1
+ import { withBase } from "@akanjs/config/postcss.config.base";
4
2
 
5
3
  /**
6
4
  * @type {import('postcss-load-config').Config}
7
5
  */
8
6
  const config = {};
9
7
 
10
- module.exports = withBase(config);
8
+ export default withBase(config);
@@ -1,4 +1,5 @@
1
1
  {
2
+ "type": "module",
2
3
  "name": "@<%= libName %>",
3
4
  "version": "0.0.1"
4
5
  }
@@ -20,7 +20,7 @@
20
20
  "strictNullChecks": true,
21
21
  "baseUrl": ".",
22
22
  "jsx": "preserve",
23
- "resolveJsonModule": true,
23
+ "resolveJsonModule": true
24
24
  },
25
25
  "exclude": ["**/node_modules", "tmp", "**/ios", "**/android"]
26
26
  }
@@ -0,0 +1,5 @@
1
+ {
2
+ "type": "module",
3
+ "name": "@<%= appName %>",
4
+ "version": "0.0.1"
5
+ }
@@ -1,10 +1,8 @@
1
- //! will be replaced with akan.config.ts
2
- const akanjsPrefix = process.env.USE_AKANJS_PKGS === "true" ? "../../pkgs/" : "";
3
- const { withBase } = require(`${akanjsPrefix}@akanjs/config/postcss.config.base`);
1
+ import { withBase } from "@akanjs/config/postcss.config.base";
4
2
 
5
3
  /**
6
4
  * @type {import('postcss-load-config').Config}
7
5
  */
8
6
  const config = {};
9
7
 
10
- module.exports = withBase(config);
8
+ export default withBase(config);
@@ -1,4 +1,5 @@
1
1
  {
2
+ "type": "module",
2
3
  "name": "@<%= libName %>",
3
4
  "version": "0.0.1"
4
5
  }
@@ -20,7 +20,7 @@
20
20
  "strictNullChecks": true,
21
21
  "baseUrl": ".",
22
22
  "jsx": "preserve",
23
- "resolveJsonModule": true,
23
+ "resolveJsonModule": true
24
24
  },
25
25
  "exclude": ["**/node_modules", "tmp", "**/ios", "**/android"]
26
26
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sourceType": "module",
3
3
  "name": "@akanjs/cli",
4
- "version": "0.9.3",
4
+ "version": "0.9.5",
5
5
  "bin": {
6
6
  "akan": "cjs/index.js"
7
7
  },