Move to standard format
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>pull/11163/head
parent
7882be160a
commit
edc861b041
@ -0,0 +1,25 @@
|
||||
all: dev-setup build-js-production
|
||||
|
||||
dev-setup: clean clean-dev npm-init
|
||||
|
||||
npm-init:
|
||||
npm install
|
||||
|
||||
npm-update:
|
||||
npm update
|
||||
|
||||
build-js:
|
||||
npm run dev
|
||||
|
||||
build-js-production:
|
||||
npm run build
|
||||
|
||||
watch-js:
|
||||
npm run watch
|
||||
|
||||
clean:
|
||||
rm -f js/settings.js
|
||||
rm -f js/settings.js.map
|
||||
|
||||
clean-dev:
|
||||
rm -rf node_modules
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,9 @@
|
||||
import Vue from 'vue';
|
||||
import PersonalSettings from './views/PersonalSettings';
|
||||
|
||||
Vue.prototype.t = t;
|
||||
|
||||
export default new Vue({
|
||||
el: '#twofactor-backupcodes-settings',
|
||||
render: h => h(PersonalSettings)
|
||||
});
|
||||
Loading…
Reference in New Issue