Skip to content

Commit 5ad80d9

Browse files
committed
Don't use weird characters (@) for directory. Breaks npm publish.
1 parent 4f28c70 commit 5ad80d9

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.2",
44
"description": "Enables ASP.NET Core MVC client-side validation, without JQuery!",
55
"main": "./dist/aspnet-validation.js",
6-
"types": "./@types/index.d.ts",
6+
"types": "./typings/index.d.ts",
77
"repository": "https://github.com/ryanelian/aspnet-validation",
88
"bugs": {
99
"url": "https://github.com/ryanelian/aspnet-validation/issues"
File renamed without changes.

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
let tsconfigOverride = {
22
declaration: true,
3-
declarationDir: '@types',
3+
declarationDir: 'typings',
44
sourceMap: false,
55
noEmit: false
66
};

0 commit comments

Comments
 (0)