Codebase list node-unicode-match-property-value-ecmascript / 3d8b429
Update upstream source from tag 'upstream/2.1.0+ds' Update to upstream version '2.1.0+ds' with Debian dir 677cb4a31d6a8ee7fd950e37ea81f1529956e1fb Yadd 1 year, 5 months ago
5 changed file(s) with 2 addition(s) and 50 deletion(s). Raw diff Collapse all Expand all
+0
-1
.gitattributes less more
0 * text=auto
+0
-26
.github/workflows/publish-on-tag.yml less more
0 name: publish-on-tag
1
2 on:
3 push:
4 tags:
5 - '*'
6
7 jobs:
8 publish:
9 runs-on: ubuntu-latest
10 steps:
11 - name: Checkout
12 uses: actions/checkout@v2
13 - name: Install dependencies
14 run: npm install
15 - name: Build
16 run: npm run build
17 - name: Test
18 run: npm test
19 - name: Publish
20 env:
21 NPM_TOKEN: ${{secrets.NPM_TOKEN}}
22 run: |
23 npm config set registry 'https://wombat-dressing-room.appspot.com/'
24 npm config set '//wombat-dressing-room.appspot.com/:_authToken' '${NPM_TOKEN}'
25 npm publish
+0
-15
.gitignore less more
0 # Installed npm modules
1 node_modules
2 package-lock.json
3
4 # Folder view configuration files
5 .DS_Store
6 Desktop.ini
7
8 # Thumbnail cache files
9 ._*
10 Thumbs.db
11
12 # Files that might appear on external disks
13 .Spotlight-V100
14 .Trashes
+0
-6
.travis.yml less more
0 language: node_js
1 node_js:
2 - "8"
3 - "10"
4 git:
5 depth: 1
00 {
11 "name": "unicode-match-property-value-ecmascript",
2 "version": "2.0.0",
2 "version": "2.1.0",
33 "description": "Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript.",
44 "homepage": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript",
55 "main": "index.js",
2929 "devDependencies": {
3030 "ava": "*",
3131 "jsesc": "^3.0.2",
32 "unicode-property-value-aliases-ecmascript": "^2.0.0"
32 "unicode-property-value-aliases-ecmascript": "^2.1.0"
3333 },
3434 "scripts": {
3535 "build": "node scripts/build.js",