@byu-oit/aim-nuxt-builder
Advanced tools
Comparing version 0.0.2-12 to 0.0.2-13
{ | ||
"name": "@byu-oit/aim-nuxt-builder", | ||
"version": "0.0.2-12", | ||
"version": "0.0.2-13", | ||
"description": "Builds out the AIM pages, static files, and vuex stores", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -1,7 +0,7 @@ | ||
import { ContextStore } from './store' | ||
const { ContextStore } = require('./store') | ||
const options = <%= JSON.stringify(options.state) %> | ||
export default function ({ store }) { | ||
module.exports = function ({ store }) { | ||
store.registerModule('context', new ContextStore(options), { preserveState: true }) | ||
} |
@@ -1,7 +0,7 @@ | ||
import { RootStore } from './store' | ||
const { RootStore } = require('./store') | ||
const options = <%= JSON.stringify(options.state) %> | ||
export default function ({ store }) { | ||
module.exports = function ({ store }) { | ||
store.registerModule('root', new RootStore(options), { preserveState: true }) | ||
} |
@@ -1,7 +0,7 @@ | ||
import { RouteStore } from './store' | ||
const { RouteStore } = require('./store') | ||
const options = <%= JSON.stringify(options.state) %> | ||
export default function ({ store }) { | ||
module.exports = function ({ store }) { | ||
store.registerModule('page', new RouteStore(options), { preserveState: true }) | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
42934