Skip to content

Commit

Permalink
Include test-utils in published output
Browse files Browse the repository at this point in the history
  • Loading branch information
craigbeck committed Oct 6, 2023
1 parent c537804 commit 67d60fb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,14 @@
"./templates": "./dist/templates/index.js",
"./App": "./dist/App.js",
"./lib/App": "./dist/App.js",
"./AppForServer": "./dist/AppForServer.js"
"./AppForServer": "./dist/AppForServer.js",
"./lib/components": "./dist/components.js",
"./lib/Page": "./dist/Page.js",
"./test-utils/*": "./test-utils/*.js"
},
"files": [
"dist/"
"dist/",
"test-utils/"
],
"scripts": {
"build": "node_modules/.bin/tsc",
Expand Down
2 changes: 1 addition & 1 deletion src/AppForServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class AppForServer extends AppBase {
if (fs.existsSync(this.serializedBase + '.json')) {
this.deserialize();
this.loadViews = function(_filename, _namespace) { return this; };
this.loadStyles = function(_filname, _options) { return this; };
this.loadStyles = function(_filename, _options) { return this; };
return;
}

Expand Down

0 comments on commit 67d60fb

Please sign in to comment.