Skip to content

only works if you manually clone the examples repo #1

@vesper8

Description

@vesper8

instructions should be modified to mention that you must also clone the https://github.com/vue-generators/vue-form-generator-examples.git repo and add it in place of the empty 'examples' folder inside the 'src' folder

at least that's what I just had to do

Activity

zoul0813

zoul0813 commented on Dec 22, 2018

@zoul0813
Member

examples is a git submodule, the instructions likely need to include the submodule info... or perhaps an “install” script

zoul0813

zoul0813 commented on Dec 22, 2018

@zoul0813
Member

@lionel-bijaoui we can just add:

git submodule init
git submodule update

To the README.md, or, alternatively ... update package.json to include it as a preinstall script

	"scripts": {
		"serve": "vue-cli-service serve",
		"build": "vue-cli-service build",
		"lint": "vue-cli-service lint",
		"preinstall": "git submodule init && git submodule update"
	},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @vesper8@zoul0813

        Issue actions

          only works if you manually clone the examples repo · Issue #1 · vue-generators/vue-form-generator-demo