@adonisjs/vite 0.0.1-0 → 0.0.1-2
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hot_file.d.ts","sourceRoot":"","sources":["../../../src/vite_plugin/hot_file.ts"],"names":[],"mappings":"AAcA,qBAAa,OAAO;;
|
|
1
|
+
{"version":3,"file":"hot_file.d.ts","sourceRoot":"","sources":["../../../src/vite_plugin/hot_file.ts"],"names":[],"mappings":"AAcA,qBAAa,OAAO;;gBAoBN,IAAI,EAAE,MAAM;IAQlB,KAAK,CAAC,IAAI,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE;IAQjC,KAAK;CAON"}
|
|
@@ -11,7 +11,6 @@ export class HotFile {
|
|
|
11
11
|
process.on('SIGTERM', process.exit);
|
|
12
12
|
process.on('SIGHUP', process.exit);
|
|
13
13
|
process.on('SIGBREAK', process.exit);
|
|
14
|
-
process.on('SIGKILL', process.exit);
|
|
15
14
|
}
|
|
16
15
|
constructor(path) {
|
|
17
16
|
this.#path = join(ConfigResolver.resolvedConfig.root, path);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adonisjs/vite",
|
|
3
|
-
"version": "0.0.1-
|
|
3
|
+
"version": "0.0.1-2",
|
|
4
4
|
"description": "Vite plugin for Adonis.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -50,6 +50,10 @@
|
|
|
50
50
|
"adonisjs"
|
|
51
51
|
],
|
|
52
52
|
"author": "Julien Ripouteau <julien@ripouteau.com>",
|
|
53
|
+
"contributors": [
|
|
54
|
+
"virk",
|
|
55
|
+
"adonisjs"
|
|
56
|
+
],
|
|
53
57
|
"license": "MIT",
|
|
54
58
|
"dependencies": {
|
|
55
59
|
"defu": "^6.1.2",
|
|
@@ -58,7 +62,7 @@
|
|
|
58
62
|
},
|
|
59
63
|
"devDependencies": {
|
|
60
64
|
"@adonisjs/core": "^6.1.5-4",
|
|
61
|
-
"@adonisjs/view": "7.0.0-
|
|
65
|
+
"@adonisjs/view": "^7.0.0-2",
|
|
62
66
|
"@commitlint/cli": "^17.6.1",
|
|
63
67
|
"@commitlint/config-conventional": "^17.6.1",
|
|
64
68
|
"@japa/assert": "^1.4.1",
|
|
@@ -87,8 +91,8 @@
|
|
|
87
91
|
"vite": "^4.3.1"
|
|
88
92
|
},
|
|
89
93
|
"peerDependencies": {
|
|
90
|
-
"@adonisjs/core": "^6.1.
|
|
91
|
-
"@adonisjs/view": "7.0.0-
|
|
94
|
+
"@adonisjs/core": "^6.1.5-4",
|
|
95
|
+
"@adonisjs/view": "^7.0.0-2"
|
|
92
96
|
},
|
|
93
97
|
"eslintConfig": {
|
|
94
98
|
"extends": [
|
|
@@ -143,5 +147,17 @@
|
|
|
143
147
|
"exclude": [
|
|
144
148
|
"tests/**"
|
|
145
149
|
]
|
|
146
|
-
}
|
|
150
|
+
},
|
|
151
|
+
"types": "./build/index.d.ts",
|
|
152
|
+
"directories": {
|
|
153
|
+
"test": "tests"
|
|
154
|
+
},
|
|
155
|
+
"repository": {
|
|
156
|
+
"type": "git",
|
|
157
|
+
"url": "git+https://github.com/adonisjs/vite.git"
|
|
158
|
+
},
|
|
159
|
+
"bugs": {
|
|
160
|
+
"url": "https://github.com/adonisjs/vite/issues"
|
|
161
|
+
},
|
|
162
|
+
"homepage": "https://github.com/adonisjs/vite#readme"
|
|
147
163
|
}
|