ember-repl 7.0.0 → 7.0.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/config/rollup.config.mjs
CHANGED
|
@@ -36,7 +36,7 @@ export default {
|
|
|
36
36
|
cjs(),
|
|
37
37
|
|
|
38
38
|
// Emit .d.ts declaration files
|
|
39
|
-
addon.declarations("declarations", `pnpm
|
|
39
|
+
addon.declarations("declarations", `pnpm ember-tsc --declaration --project ${tsConfig}`),
|
|
40
40
|
|
|
41
41
|
// Remove leftover build artifacts when starting a new build.
|
|
42
42
|
addon.clean(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-repl",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Library for enabling REPL and Playground creation with Ember/Glimmer",
|
|
6
6
|
"keywords": [
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"@embroider/vite": "^1.2.0",
|
|
51
51
|
"@eslint/js": "^9.31.0",
|
|
52
52
|
"@glimmer/component": "^2.0.0",
|
|
53
|
-
"@glint/
|
|
54
|
-
"@glint/template": "1.6.
|
|
55
|
-
"@glint/tsserver-plugin": "2.0.
|
|
53
|
+
"@glint/ember-tsc": "^1.0.3",
|
|
54
|
+
"@glint/template": "^1.6.1",
|
|
55
|
+
"@glint/tsserver-plugin": "^2.0.3",
|
|
56
56
|
"@rollup/plugin-babel": "^6.0.4",
|
|
57
57
|
"@rollup/plugin-commonjs": "^28.0.6",
|
|
58
58
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
"lint:format": "prettier . --cache --check",
|
|
150
150
|
"lint:js": "eslint . --cache",
|
|
151
151
|
"lint:js:fix": "eslint . --fix",
|
|
152
|
-
"lint:types": "
|
|
152
|
+
"lint:types": "ember-tsc --noEmit",
|
|
153
153
|
"start": "pnpm :vite dev",
|
|
154
154
|
"test:ci": "pnpm :testem ci",
|
|
155
155
|
"test:ember": "pnpm build:tests && pnpm test:ci"
|