Skip to content

Commit 28e81d5

Browse files
author
Ari Madian
authored
Merge pull request #102 from creativecommons/outside-prep
Prep repo for outside contributors
2 parents b56875c + 0e8fa5d commit 28e81d5

17 files changed

+8
-865
lines changed

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,9 @@ The Creative Commons License Chooser is meant to help people learn about CC lice
55
## About
66
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/).
77

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

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

1612
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).
1713

src/components/HelpSection.vue

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,9 @@
189189
</tr>
190190
<tr>
191191
<th>{{$t('help.how-licenses-communicated.license-icons')}}</th>
192-
<td><LicenseIconography :icon-list="['', 'by', 'nc']"/></td>
192+
<td>
193+
<LicenseIcons :iconsArr="['by', 'nc']"/>
194+
</td>
193195
</tr>
194196
</tbody>
195197
</table>
@@ -211,7 +213,7 @@
211213
</div>
212214
</template>
213215
<script>
214-
import LicenseIconography from './LicenseIconography'
216+
import LicenseIcons from './LicenseIcons'
215217
216218
// eslint-disable-next-line
217219
const ModalForm = {
@@ -233,7 +235,7 @@ const ModalForm = {
233235
}
234236
export default {
235237
components: {
236-
LicenseIconography
238+
LicenseIcons
237239
},
238240
data() {
239241
return {

src/components/LicenseIconography.vue

Lines changed: 0 additions & 62 deletions
This file was deleted.

tests/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ This file will be used to document some useful commands and tips for tests. Also
88
If you want to run only unit tests, use:
99

1010
``` bash
11-
$ npm run unit
11+
$ npm run test:unit
1212
```
1313

1414
If you want to run only e2e tests, use:
1515
``` bash
16-
$ npm run e2e
16+
$ npm run test:e2e
1717
```
1818

1919
### About Snapshots Test

tests/e2e/specs/CopyButton.js

Lines changed: 0 additions & 31 deletions
This file was deleted.

tests/e2e/specs/LicenseDescription.js

Lines changed: 0 additions & 59 deletions
This file was deleted.

tests/unit/specs/components/AttributionDetailsStep.spec.js

Lines changed: 0 additions & 44 deletions
This file was deleted.

tests/unit/specs/components/HelpSection.spec.js

Lines changed: 0 additions & 97 deletions
This file was deleted.

0 commit comments

Comments
 (0)