-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
OSOE-84: Migrate to Node.js Extensions
- Loading branch information
Showing
67 changed files
with
68 additions
and
83,214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,34 @@ | ||
{ | ||
"// SUMMARY": "We use Lombiq's Node.js Extensions project to process all frontend assets.", | ||
|
||
"private": true, | ||
"scripts": { | ||
"dotnet-prebuild": "gulp", | ||
"dotnet-postclean": "gulp clean" | ||
}, | ||
"dependencies": { | ||
"bootstrap": "^5.1.3" | ||
} | ||
}, | ||
"scripts": { | ||
"build": "npm explore nodejs-extensions -- pnpm build", | ||
"clean": "npm explore nodejs-extensions -- pnpm clean", | ||
"watch": "npm explore nodejs-extensions -- pnpm watch" | ||
}, | ||
|
||
"// nodejsExtensions": "Contains the custom configuration for asset processing with Node.js Extensions.", | ||
"// assetsToCopy": "Contains an array of configuration objects to copy specific assets to wwwroot.", | ||
"// scripts": "Absent, since this project uses the default configuration from Node.js Extensions.", | ||
"// styles": "Absent, since this project uses the default configuration from Node.js Extensions.", | ||
|
||
"nodejsExtensions": { | ||
"assetsToCopy": [ | ||
{ | ||
"sources": [ "Assets" ], | ||
"pattern": "Theme.png", | ||
"target": "wwwroot" | ||
}, | ||
{ | ||
"sources": [ "Assets/Icons" ], | ||
"target": "wwwroot/icons" | ||
} | ||
] | ||
}, | ||
|
||
"// NEXT STATION": "ResourceManagementOptionsConfiguration.cs" | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.