tkeron 3.1.0 → 3.1.1

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/changelog.md CHANGED
@@ -1,3 +1,7 @@
1
+ # v3.1.1
2
+
3
+ - placed the extensions.d.ts file in the root directory so that vscode recognizes css files, images, html, among others, as modules.
4
+
1
5
  # v3.1.0
2
6
 
3
7
  ## Breaking changes
package/dist/cmdInit.js CHANGED
@@ -18,7 +18,7 @@ const cmdInit = async ({ sourceDir, outputDir } = { sourceDir: "", outputDir: ""
18
18
  if (!(await (0, fileExist_1.fileExists)(dotTkeron)))
19
19
  await (0, promises_1.mkdir)(dotTkeron, { recursive: true });
20
20
  const extModules = (0, buildLoaders_1.getExtModules)();
21
- const extModName = (0, path_1.join)(dotTkeron, "extensions.d.ts");
21
+ const extModName = (0, path_1.join)(dotTkeron, "..", "extensions.d.ts");
22
22
  await (0, promises_1.writeFile)(extModName, extModules, { encoding: "utf-8" });
23
23
  };
24
24
  exports.cmdInit = cmdInit;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tkeron",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "Micro framework for developing web user interfaces with typescript.",
5
5
  "bin": {
6
6
  "tkeron": "dist/index.js",