@atlaspack/transformer-inline-string 2.14.5-canary.14 → 2.14.5-canary.141

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,119 @@
1
1
  # @atlaspack/transformer-inline-string
2
2
 
3
+ ## 2.14.21
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @atlaspack/plugin@2.14.21
9
+
10
+ ## 2.14.20
11
+
12
+ ### Patch Changes
13
+
14
+ - [#702](https://github.com/atlassian-labs/atlaspack/pull/702) [`daaa768`](https://github.com/atlassian-labs/atlaspack/commit/daaa7688786772d7e3713b71c5bba6b89ec704aa) Thanks [@alshdavid](https://github.com/alshdavid)! - Fixes to Flow types
15
+
16
+ - Updated dependencies [[`daaa768`](https://github.com/atlassian-labs/atlaspack/commit/daaa7688786772d7e3713b71c5bba6b89ec704aa)]:
17
+ - @atlaspack/plugin@2.14.20
18
+
19
+ ## 2.14.19
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies []:
24
+ - @atlaspack/plugin@2.14.19
25
+
26
+ ## 2.14.18
27
+
28
+ ### Patch Changes
29
+
30
+ - Updated dependencies []:
31
+ - @atlaspack/plugin@2.14.18
32
+
33
+ ## 2.14.17
34
+
35
+ ### Patch Changes
36
+
37
+ - Updated dependencies []:
38
+ - @atlaspack/plugin@2.14.17
39
+
40
+ ## 2.14.16
41
+
42
+ ### Patch Changes
43
+
44
+ - Updated dependencies []:
45
+ - @atlaspack/plugin@2.14.16
46
+
47
+ ## 2.14.15
48
+
49
+ ### Patch Changes
50
+
51
+ - Updated dependencies []:
52
+ - @atlaspack/plugin@2.14.15
53
+
54
+ ## 2.14.14
55
+
56
+ ### Patch Changes
57
+
58
+ - Updated dependencies []:
59
+ - @atlaspack/plugin@2.14.14
60
+
61
+ ## 2.14.13
62
+
63
+ ### Patch Changes
64
+
65
+ - Updated dependencies []:
66
+ - @atlaspack/plugin@2.14.13
67
+
68
+ ## 2.14.12
69
+
70
+ ### Patch Changes
71
+
72
+ - Updated dependencies []:
73
+ - @atlaspack/plugin@2.14.12
74
+
75
+ ## 2.14.11
76
+
77
+ ### Patch Changes
78
+
79
+ - Updated dependencies []:
80
+ - @atlaspack/plugin@2.14.11
81
+
82
+ ## 2.14.10
83
+
84
+ ### Patch Changes
85
+
86
+ - Updated dependencies []:
87
+ - @atlaspack/plugin@2.14.10
88
+
89
+ ## 2.14.9
90
+
91
+ ### Patch Changes
92
+
93
+ - Updated dependencies []:
94
+ - @atlaspack/plugin@2.14.9
95
+
96
+ ## 2.14.8
97
+
98
+ ### Patch Changes
99
+
100
+ - Updated dependencies []:
101
+ - @atlaspack/plugin@2.14.8
102
+
103
+ ## 2.14.7
104
+
105
+ ### Patch Changes
106
+
107
+ - Updated dependencies []:
108
+ - @atlaspack/plugin@2.14.7
109
+
110
+ ## 2.14.6
111
+
112
+ ### Patch Changes
113
+
114
+ - Updated dependencies []:
115
+ - @atlaspack/plugin@2.14.6
116
+
3
117
  ## 2.14.5
4
118
 
5
119
  ### Patch Changes
@@ -0,0 +1,3 @@
1
+ import { Transformer } from '@atlaspack/plugin';
2
+ declare const _default: Transformer<unknown>;
3
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/transformer-inline-string",
3
- "version": "2.14.5-canary.14+267b0d591",
3
+ "version": "2.14.5-canary.141+2f29297bd",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -9,14 +9,18 @@
9
9
  "type": "git",
10
10
  "url": "https://github.com/atlassian-labs/atlaspack.git"
11
11
  },
12
- "main": "lib/InlineStringTransformer.js",
13
- "source": "src/InlineStringTransformer.js",
12
+ "main": "./lib/InlineStringTransformer.js",
13
+ "source": "./src/InlineStringTransformer.ts",
14
+ "types": "./lib/InlineStringTransformer.d.ts",
14
15
  "engines": {
15
16
  "node": ">= 16.0.0"
16
17
  },
17
18
  "dependencies": {
18
- "@atlaspack/plugin": "2.14.5-canary.14+267b0d591"
19
+ "@atlaspack/plugin": "2.14.5-canary.141+2f29297bd"
19
20
  },
20
21
  "type": "commonjs",
21
- "gitHead": "267b0d59131c00e4cd1526bbf87aa84b9c8fd411"
22
- }
22
+ "scripts": {
23
+ "check-ts": "tsc --emitDeclarationOnly --rootDir src"
24
+ },
25
+ "gitHead": "2f29297bd550840c9840871559349ef773bcbf6d"
26
+ }
@@ -1,11 +1,9 @@
1
- // @flow strict-local
2
-
3
1
  import {Transformer} from '@atlaspack/plugin';
4
2
 
5
- export default (new Transformer({
3
+ export default new Transformer({
6
4
  transform({asset}) {
7
5
  asset.bundleBehavior = 'inline';
8
6
  asset.meta.inlineType = 'string';
9
7
  return [asset];
10
8
  },
11
- }): Transformer);
9
+ }) as Transformer<unknown>;
package/tsconfig.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "extends": "../../../tsconfig.json",
3
+ "include": ["src"]
4
+ }