chivox_jssdk_7.x 7.1.0
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.
- package/.bashrc +22 -0
- package/esm/index.js +2 -0
- package/esm/index.js.map +1 -0
- package/iife/chivoxaiengine.js +2 -0
- package/iife/chivoxaiengine.js.map +1 -0
- package/index.js +1 -0
- package/package.json +21 -0
- package/types/index.d.ts +156 -0
package/.bashrc
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# .bashrc
|
|
2
|
+
|
|
3
|
+
# Source global definitions
|
|
4
|
+
if [ -f /etc/bashrc ]; then
|
|
5
|
+
. /etc/bashrc
|
|
6
|
+
fi
|
|
7
|
+
|
|
8
|
+
# User specific environment
|
|
9
|
+
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
|
|
10
|
+
then
|
|
11
|
+
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
|
|
12
|
+
fi
|
|
13
|
+
export PATH
|
|
14
|
+
|
|
15
|
+
# Uncomment the following line if you don't like systemctl's auto-paging feature:
|
|
16
|
+
# export SYSTEMD_PAGER=
|
|
17
|
+
|
|
18
|
+
# User specific aliases and functions
|
|
19
|
+
|
|
20
|
+
alias rm='rm -i'
|
|
21
|
+
alias cp='cp -i'
|
|
22
|
+
alias mv='mv -i'
|