Skip to content

Commit 0c382b4

Browse files
authored
Merge pull request #1496 from ngx-translate/ngx-translate-16
Ngx translate 16
2 parents 9c3244d + d31df87 commit 0c382b4

File tree

86 files changed

+20297
-22225
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+20297
-22225
lines changed

.bitmap

-25
This file was deleted.

.editorconfig

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
# editorconfig.org
2-
1+
# Editor configuration, see http://editorconfig.org
32
root = true
43

54
[*]
65
charset = utf-8
7-
end_of_line = lf
8-
indent_size = 2
96
indent_style = space
7+
indent_size = 2
108
insert_final_newline = true
119
trim_trailing_whitespace = true
1210

.eslintignore

-1
This file was deleted.

.eslintrc.js

-32
This file was deleted.

.github/workflows/main.yml

-52
This file was deleted.
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
3+
4+
name: Node.js CI
5+
6+
on:
7+
push:
8+
branches: [ "*" ]
9+
pull_request:
10+
branches: [ "*" ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
strategy:
18+
matrix:
19+
node-version: [18.x, 20.x, 22.x]
20+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
21+
22+
steps:
23+
- uses: actions/checkout@v4
24+
- name: Use Node.js ${{ matrix.node-version }}
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: ${{ matrix.node-version }}
28+
cache: 'npm'
29+
- run: npm ci
30+
- run: npm run build-all
31+
- run: npm run test-ci

.gitignore

+43-112
Original file line numberDiff line numberDiff line change
@@ -1,112 +1,43 @@
1-
# Bit
2-
.bit
3-
public
4-
5-
# Logs
6-
logs
7-
*.log
8-
npm-debug.log*
9-
yarn-debug.log*
10-
yarn-error.log*
11-
lerna-debug.log*
12-
13-
# Diagnostic reports (https://nodejs.org/api/report.html)
14-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
15-
16-
# Runtime data
17-
pids
18-
*.pid
19-
*.seed
20-
*.pid.lock
21-
22-
# Directory for instrumented libs generated by jscoverage/JSCover
23-
lib-cov
24-
25-
# Coverage directory used by tools like istanbul
26-
coverage
27-
*.lcov
28-
29-
# nyc test coverage
30-
.nyc_output
31-
32-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
33-
.grunt
34-
35-
# Bower dependency directory (https://bower.io/)
36-
bower_components
37-
38-
# node-waf configuration
39-
.lock-wscript
40-
41-
# Compiled binary addons (https://nodejs.org/api/addons.html)
42-
build/Release
43-
44-
# Dependency directories
45-
node_modules/
46-
jspm_packages/
47-
48-
# TypeScript v1 declaration files
49-
typings/
50-
51-
# TypeScript cache
52-
*.tsbuildinfo
53-
54-
# Optional npm cache directory
55-
.npm
56-
57-
# Optional eslint cache
58-
.eslintcache
59-
60-
# Microbundle cache
61-
.rpt2_cache/
62-
.rts2_cache_cjs/
63-
.rts2_cache_es/
64-
.rts2_cache_umd/
65-
66-
# Optional REPL history
67-
.node_repl_history
68-
69-
# Output of 'npm pack'
70-
*.tgz
71-
72-
# Yarn
73-
.yarn-integrity
74-
.yarn
75-
76-
# dotenv environment variables file
77-
.env
78-
.env.test
79-
80-
# parcel-bundler cache (https://parceljs.org/)
81-
.cache
82-
83-
# Next.js build output
84-
.next
85-
86-
# Nuxt.js build / generate output
87-
.nuxt
88-
dist
89-
90-
# Gatsby files
91-
.cache/
92-
93-
# vuepress build output
94-
.vuepress/dist
95-
96-
# Serverless directories
97-
.serverless/
98-
99-
# FuseBox cache
100-
.fusebox/
101-
102-
# DynamoDB Local files
103-
.dynamodb/
104-
105-
# TernJS port file
106-
.tern-port
107-
108-
.history
109-
110-
# IDEs
111-
.vscode
112-
.idea/
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
/.angular
8+
9+
# dependencies
10+
/node_modules
11+
12+
# IDEs and editors
13+
/.idea
14+
.project
15+
.classpath
16+
.c9/
17+
*.launch
18+
.settings/
19+
*.sublime-workspace
20+
21+
# IDE - VSCode
22+
.vscode/*
23+
!.vscode/settings.json
24+
!.vscode/tasks.json
25+
!.vscode/launch.json
26+
!.vscode/extensions.json
27+
28+
# misc
29+
/.sass-cache
30+
/connect.lock
31+
/coverage
32+
/libpeerconnection.log
33+
npm-debug.log
34+
yarn-error.log
35+
testem.log
36+
/typings
37+
38+
# System Files
39+
.DS_Store
40+
Thumbs.db
41+
42+
packages/core/.idea
43+
packages/http-loader/.idea

.prettierrc.js

-6
This file was deleted.

LICENSE

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
Copyright (c) 2023 Olivier Combe
1+
Copyright (c) 2018 Olivier Combe
2+
Copyright (c) 2024 Andreas Löw / CodeAndWeb GmbH
23

34
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
45

0 commit comments

Comments
 (0)