Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep repo for outside contributors #102

Merged
merged 4 commits into from
Feb 28, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,9 @@ The Creative Commons License Chooser is meant to help people learn about CC lice
## About
Repository containing the source code for the new Creative Commons License Chooser. The new chooser is still in beta, and a beta deployment can be found [here](https://chooser-beta.creativecommons.org/).

This site is built using [Vue.js](https://vuejs.org/), [Bulma](https://bulma.io/), [Buefy](https://buefy.org/), and [Webpack](https://webpack.js.org/).
This site is built using [Vue.js](https://vuejs.org/) (and vue-cli), and [Buefy](https://buefy.org/), among other things.

#### Roadmap
There is still some work to go before the new chooser is ready to replace the existing chooser. These tasks include:
- Improvments to the Chooser's UI
- Internationalization
- Infrastructural work (Setting up analytics, monitoring, error logging)

Tasks, issues, and discussion related to the release of the new chooser are tracked with the [`Launch Milestone`](https://github.com/creativecommons/cc-chooser/milestone/1).

Expand Down
57 changes: 0 additions & 57 deletions src/components/Feedback.vue

This file was deleted.

8 changes: 5 additions & 3 deletions src/components/HelpSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@
</tr>
<tr>
<th>{{$t('help.how-licenses-communicated.license-icons')}}</th>
<td><LicenseIconography :icon-list="['', 'by', 'nc']"/></td>
<td>
<LicenseIcons :iconsArr="['by', 'nc']"/>
</td>
</tr>
</tbody>
</table>
Expand All @@ -183,7 +185,7 @@
</div>
</template>
<script>
import LicenseIconography from './LicenseIconography'
import LicenseIcons from './LicenseIcons'

// eslint-disable-next-line
const ModalForm = {
Expand All @@ -205,7 +207,7 @@ const ModalForm = {
}
export default {
components: {
LicenseIconography
LicenseIcons
},
data() {
return {
Expand Down
62 changes: 0 additions & 62 deletions src/components/LicenseIconography.vue

This file was deleted.

4 changes: 2 additions & 2 deletions tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ This file will be used to document some useful commands and tips for tests. Also
If you want to run only unit tests, use:

``` bash
$ npm run unit
$ npm run test:unit
```

If you want to run only e2e tests, use:
``` bash
$ npm run e2e
$ npm run test:e2e
```

### About Snapshots Test
Expand Down
31 changes: 0 additions & 31 deletions tests/e2e/specs/CopyButton.js

This file was deleted.

59 changes: 0 additions & 59 deletions tests/e2e/specs/LicenseDescription.js

This file was deleted.

44 changes: 0 additions & 44 deletions tests/unit/specs/components/AttributionDetailsStep.spec.js

This file was deleted.

Loading