ember-tribe 1.2.12 → 1.2.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1,3 @@
1
- TRIBE_API_URL=""
1
+ TRIBE_API_URL=""
2
+ PUSHER_API_KEY=""
3
+ PUSHER_CLUSTER="ap2"
@@ -0,0 +1,6 @@
1
+ import { modifier } from 'ember-modifier';
2
+ import ripplet from 'ripplet.js';
3
+
4
+ export default modifier(function ripple(element) {
5
+ element.addEventListener('pointerdown', ripplet);
6
+ });
@@ -0,0 +1,14 @@
1
+ /* eslint-env node */
2
+
3
+ 'use strict';
4
+
5
+ const path = require('path');
6
+
7
+ module.exports = function (/* env */) {
8
+ return {
9
+ clientAllowedKeys: ['PUSHER_API_KEY', 'PUSHER_CLUSTER'],
10
+ fastbootAllowedKeys: [],
11
+ failOnMissingKey: false,
12
+ path: path.join(path.dirname(__dirname), '.env'),
13
+ };
14
+ };
@@ -1,5 +1,5 @@
1
1
  module.exports = function () {
2
2
  return {
3
- 'free-solid-svg-icons': ['magnifying-glass', 'bars', 'times', ],
3
+ 'free-solid-svg-icons': ['magnifying-glass', 'bars', 'times', 'lock'],
4
4
  };
5
5
  };
@@ -39,6 +39,7 @@ module.exports = {
39
39
  { name: 'swiper' },
40
40
  { name: 'howler' },
41
41
  { name: 'peerjs' },
42
+ { name: 'ripplet.js' },
42
43
  { name: '@fortawesome/free-solid-svg-icons' },
43
44
  { name: '@fortawesome/free-brands-svg-icons' },
44
45
  { name: '@fortawesome/pro-solid-svg-icons' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-tribe",
3
- "version": "1.2.12",
3
+ "version": "1.2.13",
4
4
  "description": "The default blueprint for using Tribe within EmberJS.",
5
5
  "keywords": [
6
6
  "ember-addon"
File without changes
File without changes
@@ -1,6 +0,0 @@
1
- <?php
2
- if (file_exists('dist/index.html') !== false)
3
- echo 'exists';
4
- else
5
- echo 'Run "ember build -prod" before syncing with php.';
6
- ?>