@temir.ra/create-template 0.1.2 → 0.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Version 0
2
2
 
3
+ ## 0.1.3
4
+
5
+ 1. Removed `scripts/dev.ts`.
6
+
3
7
  ## 0.1.2
4
8
 
5
9
  1. Updated `package.json` from `create-ts-lib` template.
package/buildinfo.txt CHANGED
@@ -1 +1 @@
1
- 0.1.2+1e4ccca
1
+ 0.1.3+90b72ed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@temir.ra/create-template",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Template package to create new template packages",
5
5
  "author": "temir.ra",
6
6
  "license": "MIT",
@@ -1,13 +0,0 @@
1
- import { fileURLToPath } from 'url';
2
-
3
-
4
- const start: number = performance.now();
5
-
6
- const packageUrl = new URL('../', import.meta.url);
7
- console.log(`'packagePath':`, fileURLToPath(packageUrl));
8
-
9
-
10
- // dev scratchpad
11
-
12
-
13
- console.log(`${(performance.now() - start).toFixed(3)}ms`);