@quilted/create 0.1.14 → 0.1.17
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 +20 -0
- package/build/cjs/_commonjsHelpers.cjs +10 -0
- package/build/cjs/index3.cjs +7578 -49784
- package/build/cjs/package-manager.cjs +8 -3
- package/build/cjs/package.cjs +24 -10
- package/build/cjs/parser-babel.cjs +59 -0
- package/build/cjs/parser-yaml.cjs +182 -0
- package/build/cjs/standalone.cjs +147 -0
- package/build/esm/_commonjsHelpers.mjs +7 -0
- package/build/esm/index3.mjs +7578 -49773
- package/build/esm/package-manager.mjs +8 -3
- package/build/esm/package.mjs +25 -11
- package/build/esm/parser-babel.mjs +57 -0
- package/build/esm/parser-yaml.mjs +180 -0
- package/build/esm/standalone.mjs +145 -0
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/typescript/package.d.ts.map +1 -1
- package/build/typescript/shared.d.ts.map +1 -1
- package/package.json +1 -1
- package/source/package.ts +46 -12
- package/source/shared.ts +6 -1
- package/build/cjs/index4.cjs +0 -7854
- package/build/esm/index4.mjs +0 -7852
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @quilted/create
|
|
2
2
|
|
|
3
|
+
## 0.1.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`78d28015`](https://github.com/lemonmade/quilt/commit/78d280157c239175a431e12dbb9fda08f2c84a09) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix create package flow in monorepos
|
|
8
|
+
|
|
9
|
+
* [`ae3bbaa8`](https://github.com/lemonmade/quilt/commit/ae3bbaa8e2cc50bb8f57e332fa0aa12100153fc6) Thanks [@lemonmade](https://github.com/lemonmade)! - Add `directory` to package.json in monorepo packages
|
|
10
|
+
|
|
11
|
+
## 0.1.16
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`910c7dbe`](https://github.com/lemonmade/quilt/commit/910c7dbe0ba5ad9b348c77e045faf13ba4b94219) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix prettier standalone usage
|
|
16
|
+
|
|
17
|
+
## 0.1.15
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- [`0115ad9c`](https://github.com/lemonmade/quilt/commit/0115ad9c8eb78fa0e682c700dc699bcec79bb896) Thanks [@lemonmade](https://github.com/lemonmade)! - Smaller create package build
|
|
22
|
+
|
|
3
23
|
## 0.1.14
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
4
|
+
|
|
5
|
+
function getDefaultExportFromCjs (x) {
|
|
6
|
+
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
exports.commonjsGlobal = commonjsGlobal;
|
|
10
|
+
exports.getDefaultExportFromCjs = getDefaultExportFromCjs;
|